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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Xueyun Qian
erp5
Commits
96f90db3
Commit
96f90db3
authored
Apr 22, 2015
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
runUnitTest: expand ~ in bt5_path and warn user about invalid bt5 path passed to test runner
parent
139d8f83
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
product/ERP5Type/tests/runUnitTest.py
product/ERP5Type/tests/runUnitTest.py
+10
-3
No files found.
product/ERP5Type/tests/runUnitTest.py
View file @
96f90db3
...
@@ -406,9 +406,16 @@ class ERP5TypeTestLoader(unittest.TestLoader):
...
@@ -406,9 +406,16 @@ class ERP5TypeTestLoader(unittest.TestLoader):
instancehome = getConfiguration().instancehome
instancehome = getConfiguration().instancehome
bt5_path_list.append(os.path.join(instancehome, 'bt5'))
bt5_path_list.append(os.path.join(instancehome, 'bt5'))
bt5_path_list = [bt5_path for bt5_path in bt5_path_list
valid_bt5_path_list = []
if os.path.exists(bt5_path)]
for bt5_path in bt5_path_list:
template_tool.updateRepositoryBusinessTemplateList(bt5_path_list)
if bt5_path:
bt5_path = os.path.expanduser(bt5_path)
if not os.path.exists(bt5_path):
_print("
Ignoring
non
existant
bt5
path
%
s
\
n
" % bt5_path)
else:
valid_bt5_path_list.append(bt5_path)
template_tool.updateRepositoryBusinessTemplateList(valid_bt5_path_list)
url_bt_tuple_list = [
url_bt_tuple_list = [
('%s/%s' % (repository, bt_title), bt_title) for repository, bt_title in
('%s/%s' % (repository, bt_title), bt_title) for repository, bt_title in
...
...
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