diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b8177746..f85d7d45 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -74,8 +74,11 @@ jobs: - name: Install dependencies run: uv pip install --system -r requirements.txt -r requirements-test.txt - - name: Run tests - run: python -m pytest -v --tb=short --timeout=120 --no-cov --override-ini="addopts=" -p no:cacheprovider --durations=20 + - name: Run unit tests + run: python -m pytest -m "unit" -v --tb=short --timeout=120 --no-cov --override-ini="addopts=" -p no:cacheprovider --durations=20 + + - name: Run integration tests + run: python -m pytest -m "integration" -v --tb=short --timeout=120 --no-cov --override-ini="addopts=" -p no:cacheprovider --durations=20 validate: runs-on: ubuntu-latest