diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index aca0e82a9..f23faace3 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -73,7 +73,7 @@ jobs: token: ${{ secrets.CODSPEED_TOKEN }} run: | export PYTHONUNBUFFERED=1 - poetry run pytest tests/units --cov --no-cov-on-fail --cov-report= --codspeed + poetry run pytest tests/units --cov --no-cov-on-fail --codspeed --cov-report= - name: Run unit tests w/ redis if: ${{ matrix.os == 'ubuntu-latest' }} uses: CodSpeedHQ/action@v3 @@ -82,7 +82,7 @@ jobs: run: | export PYTHONUNBUFFERED=1 export REDIS_URL=redis://localhost:6379 - poetry run pytest tests/units --cov --no-cov-on-fail --cov-report= --codspeed + poetry run pytest tests/units --cov --no-cov-on-fail --codspeed --cov-report= # Change to explicitly install v1 when reflex-hosting-cli is compatible with v2 - name: Run unit tests w/ pydantic v1 uses: CodSpeedHQ/action@v3 @@ -91,7 +91,7 @@ jobs: run: | export PYTHONUNBUFFERED=1 poetry run uv pip install "pydantic~=1.10" - poetry run pytest tests/units --cov --no-cov-on-fail --cov-report= --codspeed + poetry run pytest tests/units --cov --no-cov-on-fail --codspeed --cov-report= - name: Generate coverage report run: poetry run coverage html