Skip to content

Commit

Permalink
Updating runner.py to enable compiling behave logs into the merged_be…
Browse files Browse the repository at this point in the history
…have_outputs.log file
  • Loading branch information
anibalinn committed Aug 22, 2024
1 parent e59ade9 commit 7bfe5ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion behavex/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ def _launch_behave(behave_args):
execution_code = 2
generate_report = True
if os.path.exists(stdout_file):
with open(os.path.join(get_env('OUTPUT'), 'merged_behave_logs.log'), 'a+') as behave_log_file:
with open(os.path.join(get_env('OUTPUT'), 'merged_behave_outputs.log'), 'a+') as behave_log_file:
behave_log_file.write(open(stdout_file, 'r').read())
os.remove(stdout_file)
return execution_code, generate_report
Expand Down

0 comments on commit 7bfe5ef

Please sign in to comment.