We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c35d666 commit abb63a1Copy full SHA for abb63a1
py/private/pytest.py.tmpl
@@ -36,6 +36,10 @@ if __name__ == "__main__":
36
if junit_xml_out is not None:
37
args.append(f"--junitxml={junit_xml_out}")
38
39
+ suite_name = os.environ.get("BAZEL_TARGET")
40
+ if suite_name:
41
+ args.extend(["-o", f"junit_suite_name={suite_name}"])
42
+
43
test_filter = os.environ.get("TESTBRIDGE_TEST_ONLY")
44
if test_filter is not None:
45
args.append(f"-k={test_filter}")
0 commit comments