Skip to content

Commit eb91214

Browse files
authored
chore: integration tests only on oldest and newest Py versions (#201)
1 parent 7e1e85e commit eb91214

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/integration_tests.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
19+
# Run integration tests only on the oldest and newest supported Python versions,
20+
# as these tests are time-consuming and these versions are the most likely to encounter issues.
21+
python-version: ["3.8", "3.12"]
2022
max-parallel: 1 # no concurrency on this level, to not overshoot the test user limits
2123

2224
steps:

0 commit comments

Comments
 (0)