Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
vadere
vadere
Commits
c7e0538c
Commit
c7e0538c
authored
Aug 02, 2018
by
Stefan Schuhbaeck
Browse files
fix subporcess args
parent
151cb09f
Pipeline
#64381
failed with stages
in 44 minutes and 22 seconds
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Tools/ContinuousIntegration/run_vadere_console_with_all_scenario_files.py
View file @
c7e0538c
...
...
@@ -55,7 +55,7 @@ def run_scenario_files_with_vadere_console(scenario_files, vadere_console="Vader
wall_time_start
=
time
.
time
()
# Use timout feature, check return value and capture stdout/stderr to a PIPE (use completed_process.stdout to get it).
completed_process
=
subprocess
.
run
(
args
=
[
"java"
,
"-enableassertions"
,
"-jar"
,
vadere_console
,
"scenario-run"
,
"-f"
,
scenario_file
,
"
-o"
,
output_dir
],
completed_process
=
subprocess
.
run
(
args
=
[
"java"
,
"-enableassertions"
,
"-jar"
,
vadere_console
,
"scenario-run"
,
"-f"
,
scenario_file
,
"-o"
,
output_dir
],
timeout
=
scenario_timeout_in_sec
,
check
=
True
,
stdout
=
subprocess
.
PIPE
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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