From 939053aea92a916b1aa3c6ea81971b69e67f4e65 Mon Sep 17 00:00:00 2001 From: AlexeerCT Date: Tue, 24 Mar 2026 12:44:28 -0500 Subject: [PATCH] Enhance test output verbosity in CI workflow - Updated the pytest command in the CI workflow to include additional flags for verbose output, allowing for more detailed test results and easier debugging. - This change improves the visibility of test execution details, aiding in the identification of issues during the CI process. --- .gitea/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 1fda7c2e..7edc0850 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -64,7 +64,7 @@ jobs: python -m pip install --upgrade pip pip install -r "$GITHUB_WORKSPACE/backend/requirements.txt" cd "$GITHUB_WORKSPACE/backend" - pytest -q tests + pytest -q tests -v -ra -s build: runs-on: self-hosted