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
cdf66f7e
Commit
cdf66f7e
authored
Jun 19, 2013
by
Benjamin Blanc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bt5_path into testnode
parent
0ee3eaa0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
erp5/util/testnode/testnode.py
erp5/util/testnode/testnode.py
+9
-2
No files found.
erp5/util/testnode/testnode.py
View file @
cdf66f7e
...
...
@@ -374,8 +374,15 @@ branch = %(branch)s
invocation_list
.
extend
([
"--firefox_bin"
,
firefox_bin_list
[
0
]])
if
'--xvfb_bin'
in
supported_paramater_set
:
invocation_list
.
extend
([
"--xvfb_bin"
,
xvfb_bin_list
[
0
]])
bt5_path_list
=
config
.
get
(
"bt5_path"
)
if
bt5_path_list
not
in
(
''
,
None
,):
bt5_path_list
=
[]
if
config
.
get
(
"bt5_path"
):
bt5_path_list
.
append
(
config
.
get
(
"bt5_path"
))
if
hasattr
(
node_test_suite
,
'additional_bt5_repository_id'
):
additional_bt5_path
=
os
.
path
.
join
(
node_test_suite
.
working_directory
,
node_test_suite
.
additional_bt5_repository_id
)
bt5_path_list
.
append
(
additional_bt5_path
)
if
len
(
bt5_path_list
)
>
0
:
invocation_list
.
extend
([
"--bt5_path"
,
bt5_path_list
])
# From this point, test runner becomes responsible for updating test
# result. We only do cleanup if the test runner itself is not able
...
...
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