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
Bryan Kaperick
erp5
Commits
c3136080
Commit
c3136080
authored
Jan 17, 2014
by
Gabriel Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
runUnitTest script: Don't set duplicated paths on repository list
parent
05c979fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
product/ERP5Type/tests/runUnitTest.py
product/ERP5Type/tests/runUnitTest.py
+2
-3
No files found.
product/ERP5Type/tests/runUnitTest.py
View file @
c3136080
...
@@ -412,8 +412,8 @@ class ERP5TypeTestLoader(unittest.TestLoader):
...
@@ -412,8 +412,8 @@ class ERP5TypeTestLoader(unittest.TestLoader):
bt5_path
=
os
.
environ
.
get
(
'erp5_tests_bt5_path'
)
bt5_path
=
os
.
environ
.
get
(
'erp5_tests_bt5_path'
)
if
bt5_path
:
if
bt5_path
:
bt5_path_list
.
extend
(
[
bt5_path
.
replace
(
'*'
,
''
)
bt5_path_list
.
extend
(
set
([
re
.
sub
(
"(
\
/
\
*|
\
*)
"
, '', bt5_path
)
for
bt5_path
in
bt5_path
.
split
(
','
)
]
)
for bt5_path in bt5_path.split(',')
])
)
else:
else:
from App.config import getConfiguration
from App.config import getConfiguration
instancehome = getConfiguration().instancehome
instancehome = getConfiguration().instancehome
...
@@ -421,7 +421,6 @@ class ERP5TypeTestLoader(unittest.TestLoader):
...
@@ -421,7 +421,6 @@ class ERP5TypeTestLoader(unittest.TestLoader):
bt5_path_list = [bt5_path for bt5_path in bt5_path_list
bt5_path_list = [bt5_path for bt5_path in bt5_path_list
if os.path.exists(bt5_path)]
if os.path.exists(bt5_path)]
template_tool.updateRepositoryBusinessTemplateList(bt5_path_list)
template_tool.updateRepositoryBusinessTemplateList(bt5_path_list)
url_bt_tuple_list = [
url_bt_tuple_list = [
...
...
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