diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 47b930ef..58b43765 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,10 +13,10 @@ jobs: steps: - name: Check out repository uses: actions/checkout@v4 - - name: Set up Python 3.12 + - name: Set up Python 3.11 uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: "3.11" cache: "pip" - name: Install dependencies run: pip install ".[dev]" @@ -31,5 +31,4 @@ jobs: # run test suite - name: Run pytests run: | - pytest -m "quick" --verbose --cov=src tests/ - pytest -m "ci" --verbose --cov=src tests/ + pytest -m "quick or ci" --verbose --cov=src tests/