Skip to content

Commit adb2baa

Browse files
committed
ci: skip integration tests for all versions except Python 3.11
1 parent 925e884 commit adb2baa

File tree

2 files changed

+1066
-1
lines changed

2 files changed

+1066
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ jobs:
3131
run: pip install -e .[test]
3232

3333
- name: Test with pytest
34-
run: pytest
34+
run: |
35+
if [ "${{ matrix.python-version }}" == "3.11" ]; then
36+
pytest
37+
else
38+
pytest -k "not example"
39+
fi
3540
env:
3641
API_KEY: ${{secrets.API_KEY}}

0 commit comments

Comments
 (0)