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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alecs_myu
erp5
Commits
e935c80f
Commit
e935c80f
authored
Nov 07, 2016
by
Romain Courteaud
Committed by
Valentin Benozillo
Jul 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[HARDCODED] Reduce number of test to run
parent
732d1356
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
5 deletions
+26
-5
tests/__init__.py
tests/__init__.py
+26
-5
No files found.
tests/__init__.py
View file @
e935c80f
from
glob
import
glob
import
os
,
subprocess
,
re
# test_suite is provided by 'run_test_suite'
from
test_suite
import
ERP5Type
TestSuite
from
test_suite
import
Saved
TestSuite
import
sys
HERE
=
os
.
path
.
dirname
(
__file__
)
class
_ERP5
(
ERP5TypeTestSuite
):
class
_ERP5
(
SavedTestSuite
):
_saved_test_id
=
"erp5_web_renderjs_ui_test:testFunctionalRJSInterfaceValidator"
realtime_output
=
False
enabled_product_list
=
(
'CMFActivity'
,
'CMFCategory'
,
'ERP5'
,
'ERP5Catalog'
,
'ERP5eGovSecurity'
,
'ERP5Form'
,
...
...
@@ -35,9 +36,29 @@ class _ERP5(ERP5TypeTestSuite):
component_re
=
re
.
compile
(
".*/([^/]+)/TestTemplateItem/portal_components"
"/test
\
.[^.]+
\
.([^.]+).py$"
)
for
test_path
in
(
glob
(
'%s/product/*/tests/test*.py'
%
path
)
+
glob
(
'%s/bt5/*/TestTemplateItem/test*.py'
%
path
)
+
glob
(
'%s/bt5/*/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)):
# glob('%s/product/Formulator/tests/test*.py' % path) +
# glob('%s/product/ERP5Form/tests/test*.py' % path) +
# ['%s/product/ERP5/tests/testXHTML.py' % path] +
# ['%s/product/ERP5Type/tests/testFunctionalCore.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_web_ui_test/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_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_accounting_renderjs_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_officejs_ui_test/TestTemplateItem/portal_components/test.*.test*.py'
%
path
)
):
component_re_match
=
component_re
.
match
(
test_path
)
if
component_re_match
is
not
None
:
test_case
=
"%s:%s"
%
(
component_re_match
.
group
(
1
),
...
...
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