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.
This commit is contained in:
2026-03-24 12:44:28 -05:00
parent c812f5214c
commit 939053aea9

View File

@@ -64,7 +64,7 @@ jobs:
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r "$GITHUB_WORKSPACE/backend/requirements.txt" pip install -r "$GITHUB_WORKSPACE/backend/requirements.txt"
cd "$GITHUB_WORKSPACE/backend" cd "$GITHUB_WORKSPACE/backend"
pytest -q tests pytest -q tests -v -ra -s
build: build:
runs-on: self-hosted runs-on: self-hosted