From 9f2045ccaadd03adfdfa14a672b22b74913d8404 Mon Sep 17 00:00:00 2001 From: Philipp Emanuel Weidmann Date: Tue, 23 Jun 2026 10:47:36 +0530 Subject: [PATCH] ci: fix test output ordering --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d192f38..f95bf77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,9 @@ jobs: run: uv run ty check --output-format=github --error-on-warning . - name: Run tests - run: uv run tests/run_tests.py + env: + PYTHONUNBUFFERED: "1" + run: uv run tests/run_tests.py 2>&1 - name: Build package run: uv build