Skip to content

Commit a6193b2

Browse files
authored
[ci] write test progress message to stderr (#58019)
otherwise, the ordering or messages looks strange on windows. Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
1 parent 7e21548 commit a6193b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/ray_ci/tester.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def main(
257257
if build_only:
258258
sys.exit(0)
259259

260-
print("--- Listing test targets")
260+
print("--- Listing test targets", file=sys.stderr)
261261

262262
if bisect_run_test_target:
263263
test_targets = [bisect_run_test_target]
@@ -278,10 +278,10 @@ def main(
278278
lookup_test_database=lookup_test_database,
279279
)
280280
if not test_targets:
281-
print("--- No tests to run")
281+
print("--- No tests to run", file=sys.stderr)
282282
sys.exit(0)
283283

284-
print(f"+++ Running {len(test_targets)} tests")
284+
print(f"+++ Running {len(test_targets)} tests", file=sys.stderr)
285285
success = container.run_tests(
286286
team,
287287
test_targets,

0 commit comments

Comments
 (0)