Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Romain Courteaud
erp5
Commits
c7e6ea18
Commit
c7e6ea18
authored
8 years ago
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[HARDCODED] Reduce number of test to run
parent
6426e137
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
16 deletions
+70
-16
tests/__init__.py
tests/__init__.py
+70
-16
No files found.
tests/__init__.py
View file @
c7e6ea18
...
@@ -2,13 +2,14 @@
...
@@ -2,13 +2,14 @@
from
glob
import
glob
from
glob
import
glob
import
os
,
subprocess
,
re
import
os
,
subprocess
,
re
# test_suite is provided by 'run_test_suite'
# test_suite is provided by 'run_test_suite'
from
test_suite
import
ERP5TypeTestSuite
from
test_suite
import
ERP5TypeTestSuite
,
SavedTestSuite
import
sys
import
sys
from
itertools
import
chain
from
itertools
import
chain
HERE
=
os
.
path
.
dirname
(
__file__
)
HERE
=
os
.
path
.
dirname
(
__file__
)
class
_ERP5
(
ERP5TypeTestSuite
):
class
_ERP5
(
ERP5TypeTestSuite
):
_saved_test_id
=
"erp5_web_renderjs_ui_test:testFunctionalRJSInterfaceValidator"
realtime_output
=
False
realtime_output
=
False
enabled_product_list
=
(
'CMFActivity'
,
'CMFCategory'
,
'ERP5'
,
'ERP5Catalog'
,
enabled_product_list
=
(
'CMFActivity'
,
'CMFCategory'
,
'ERP5'
,
'ERP5Catalog'
,
'ERP5Form'
,
'ERP5Form'
,
...
@@ -36,10 +37,55 @@ class _ERP5(ERP5TypeTestSuite):
...
@@ -36,10 +37,55 @@ class _ERP5(ERP5TypeTestSuite):
path
=
"%s/../"
%
HERE
path
=
"%s/../"
%
HERE
component_re
=
re
.
compile
(
".*/([^/]+)/TestTemplateItem/portal_components"
component_re
=
re
.
compile
(
".*/([^/]+)/TestTemplateItem/portal_components"
"/test
\
.[^.]+
\
.([^.]+).py$"
)
"/test
\
.[^.]+
\
.([^.]+).py$"
)
for
test_path
in
chain
(
for
test_path
in
(
glob
(
path
+
'/product/*/tests/test*.py'
),
# glob('%s/product/Formulator/tests/test*.py' % path) +
glob
(
path
+
'/bt5/*/TestTemplateItem/test*.py'
),
# glob('%s/product/ERP5Form/tests/test*.py' % path) +
glob
(
path
+
'/bt5/*/TestTemplateItem/portal_components/test.*.test*.py'
)):
# ['%s/product/ERP5OOo/tests/testDeferredStyle.py' % path] +
# glob('%s/product/ERP5/tests/test.*.py' % path) +
# ['%s/product/ERP5/tests/testXHTML.py' % path] +
# ['%s/product/ERP5/tests/testERP5Core.py' % path] +
# ['%s/product/ERP5/tests/testQueryModule.py' % path] +
# ['%s/product/ERP5/tests/testBankReconciliation.py' % path] +
# ['%s/product/ERP5Security/tests/testERP5Security.py' % path] +
# ['%s/product/ERP5Type/tests/testUpgradeInstanceWithOldDataFs.py' % path] +
# ['%s/product/ERP5Type/tests/testFunctionalCore.py' % path] +
# ['%s/product/ERP5Type/tests/testFunctionalKM.py' % path] +
# ['%s/product/ERP5Type/tests/testFunctionalAnonymousSelection.py' % path] +
# glob('%s/bt5/erp5_web/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob
(
'%s/bt5/erp5_hal_json_style/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
+
glob
(
'%s/bt5/erp5_web_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
+
# glob('%s/bt5/erp5_osoe_web_renderjs_ui/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_web_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_token_login/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob
(
'%s/bt5/erp5_trade_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
+
glob
(
'%s/bt5/erp5_pdm_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
+
glob
(
'%s/bt5/erp5_crm_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
+
glob
(
'%s/bt5/erp5_crm_ui_test/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
+
glob
(
'%s/bt5/erp5_item_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
+
glob
(
'%s/bt5/erp5_deferred_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
+
glob
(
'%s/bt5/erp5_accounting_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
+
# glob('%s/bt5/erp5_accounting_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob
(
'%s/bt5/erp5_bank_reconciliation_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
+
glob
(
'%s/bt5/erp5_document_scanner_ui_test/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
+
glob
(
'%s/bt5/erp5_gadget_interface_validator_ui_test/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
+
# glob('%s/bt5/erp5_web_monitoring_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_travel_expense_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_officejs_support_request_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_officejs_afs_directory_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_configurator_standard/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_test_result/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_officejs_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_web_manifest_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_km_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_monaco_editor_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_web_project_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_corporate_identity_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_run_my_doc*/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_oauth*/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_web_js_style*/TestTemplateItem/portal_components/test.*.test*.py' % path) +
[]
):
component_re_match
=
component_re
.
match
(
test_path
)
component_re_match
=
component_re
.
match
(
test_path
)
if
component_re_match
is
not
None
:
if
component_re_match
is
not
None
:
test_case
=
"%s:%s"
%
(
component_re_match
.
group
(
1
),
test_case
=
"%s:%s"
%
(
component_re_match
.
group
(
1
),
...
@@ -231,20 +277,28 @@ class ERP5BusinessTemplateCodingStyleTestSuite(_ERP5):
...
@@ -231,20 +277,28 @@ class ERP5BusinessTemplateCodingStyleTestSuite(_ERP5):
"""Run coding style test on all business templates.
"""Run coding style test on all business templates.
"""
"""
def
getTestList
(
self
):
def
getTestList
(
self
):
test_list
=
[
test_list
=
[]
os
.
path
.
basename
(
path
)
for
business_template_path
in
(
for
path
in
chain
(
glob
(
'%s/../product/ERP5/bootstrap/erp5_*'
%
HERE
)
+
glob
(
HERE
+
'/../bt5/*'
),
glob
(
'%s/../bt5/erp5_adm*'
%
HERE
)
+
glob
(
HERE
+
'/../product/ERP5/bootstrap/*'
))
glob
(
'%s/../bt5/erp5_forge*'
%
HERE
)
+
glob
(
'%s/../bt5/erp5_*hal*'
%
HERE
)
+
glob
(
'%s/../bt5/erp5_*renderjs*'
%
HERE
)
+
glob
(
'%s/../bt5/erp5_*officejs*'
%
HERE
)
+
glob
(
'%s/../bt5/erp5_web*'
%
HERE
)
+
glob
(
'%s/../bt5/erp5_configu*'
%
HERE
)
+
glob
(
'%s/../bt5/erp5_upgrader*'
%
HERE
)
+
glob
(
'%s/../bt5/erp5_corporate_identity*'
%
HERE
)
+
glob
(
'%s/../bt5/erp5_run_my_doc*'
%
HERE
)
+
[]
):
# we skip coding style check for business templates having this marker
# we skip coding style check for business templates having this marker
# property. Since the property is not exported (on purpose), modified business templates
# property. Since the property is not exported (on purpose), modified business templates
# will be candidate for coding style test again.
# will be candidate for coding style test again.
if
not
os
.
path
.
exists
(
path
+
'/bt/skip_coding_style_test'
)
and
os
.
path
.
isdir
(
path
)
if
os
.
path
.
isdir
(
business_template_path
)
and
\
]
not
os
.
path
.
exists
(
os
.
path
.
join
(
business_template_path
,
'bt/skip_coding_style_test'
)):
for
path
in
chain
(
glob
(
HERE
+
'/../product/*'
),
test_list
.
append
(
os
.
path
.
basename
(
business_template_path
))
glob
(
HERE
+
'/../bt5'
)):
if
not
os
.
path
.
exists
(
path
+
'/skip_coding_style_test'
)
and
os
.
path
.
isdir
(
path
):
test_list
.
append
(
"Python3Style."
+
os
.
path
.
basename
(
path
))
return
test_list
return
test_list
def
run
(
self
,
full_test
):
def
run
(
self
,
full_test
):
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment