We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0867a00 commit 8a90cd0Copy full SHA for 8a90cd0
1 file changed
.github/workflows/ci.yml
@@ -17,7 +17,7 @@ jobs:
17
- name: Checkout code
18
uses: actions/checkout@v4
19
20
- - name: Set up Python
+ - name: Set up Python ${{ matrix.python-version }}
21
uses: actions/setup-python@v5
22
with:
23
python-version: ${{ matrix.python-version }}
@@ -27,15 +27,10 @@ jobs:
27
python -m pip install --upgrade pip
28
pip install .[dev]
29
30
- - name: Run unit and integration tests
+ - name: Run unit tests
31
run: |
32
pytest -m "not integration"
33
34
- - name: Run integration tests (optional)
35
- run: |
36
- pytest -m integration
37
- if: ${{ always() }}
38
-
39
- name: Lint and format check (ruff)
40
41
ruff check .
0 commit comments