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 7e21548 commit a6193b2Copy full SHA for a6193b2
ci/ray_ci/tester.py
@@ -257,7 +257,7 @@ def main(
257
if build_only:
258
sys.exit(0)
259
260
- print("--- Listing test targets")
+ print("--- Listing test targets", file=sys.stderr)
261
262
if bisect_run_test_target:
263
test_targets = [bisect_run_test_target]
@@ -278,10 +278,10 @@ def main(
278
lookup_test_database=lookup_test_database,
279
)
280
if not test_targets:
281
- print("--- No tests to run")
+ print("--- No tests to run", file=sys.stderr)
282
283
284
- print(f"+++ Running {len(test_targets)} tests")
+ print(f"+++ Running {len(test_targets)} tests", file=sys.stderr)
285
success = container.run_tests(
286
team,
287
test_targets,
0 commit comments