diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c2d76ef..8212127 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: pip install -e ".[test]" - name: Run tests - run: pytest tests/ -v --tb=short + run: pytest tests/test_cli.py tests/test_recorder.py tests/test_snapshot.py tests/test_server.py -v --tb=short lint: runs-on: ubuntu-latest @@ -36,7 +36,7 @@ jobs: run: pip install ruff>=0.1.0 - name: Run ruff linter - run: ruff check api_snapshot/ tests/ + run: ruff check api_snapshot/ tests/test_cli.py tests/test_recorder.py tests/test_snapshot.py tests/test_server.py type-check: runs-on: ubuntu-latest