mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Use binary path in testBazelReporter reporter output path
This commit is contained in:
parent
a369267874
commit
bdfa920f93
@ -28,7 +28,7 @@ if len(sys.argv) != 3:
|
|||||||
|
|
||||||
bin_path = os.path.abspath(sys.argv[1])
|
bin_path = os.path.abspath(sys.argv[1])
|
||||||
output_dir = os.path.abspath(sys.argv[2])
|
output_dir = os.path.abspath(sys.argv[2])
|
||||||
xml_out_path = os.path.join(output_dir, "bazel-out.xml")
|
xml_out_path = os.path.join(output_dir, '{}.xml'.format(os.path.basename(bin_path)))
|
||||||
|
|
||||||
# Ensure no file exists from previous test runs
|
# Ensure no file exists from previous test runs
|
||||||
if os.path.isfile(xml_out_path):
|
if os.path.isfile(xml_out_path):
|
||||||
|
Loading…
Reference in New Issue
Block a user