Skip to content

Commit c68acd8

Browse files
committed
Split tox jobs
1 parent f5c7ea5 commit c68acd8

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/run_tox.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,29 @@ env:
1111
DJANGO_SETTINGS_MODULE: test_app.test_settings
1212

1313
jobs:
14-
testPy37:
14+
testPy37-39:
1515
runs-on: ubuntu-22.04
1616
steps:
1717
- uses: actions/checkout@v6
1818
- uses: actions/setup-python@v5
1919
with:
20-
python-version: 3.7
20+
python-version:
21+
3.7
22+
3.8
23+
3.9
2124
- name: Install tox
2225
run: |
2326
python -m pip install --upgrade pip
2427
pip install tox
2528
- name: Run tox
2629
run: tox run --conf tox_old.ini
27-
tests38-314:
30+
tests310-314:
2831
runs-on: ubuntu-latest
2932
steps:
3033
- uses: actions/checkout@v6
3134
- uses: actions/setup-python@v5
3235
with:
3336
python-version: |
34-
3.8
35-
3.9
3637
3.10
3738
3.11
3839
3.12

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
envlist=
33
#docs,
44
; py37-django{22,32}-fido11,
5-
py38-django{22,32,42}-fido11
6-
py39-django{22,32,42}-fido11
5+
; py38-django{22,32,42}-fido11
6+
; py39-django{22,32,42}-fido11
77
py310-django{32,42,52}-fido{11,20,21}
88
py311-django{42,52}-fido{11,20,21}
99
py312-django{42,52,60},fido{11,20,21}

tox_old.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[tox]
22
envlist=
33
py37-django{22,32}-fido11,
4+
py38-django{22,32,42}-fido11
5+
py39-django{22,32,42}-fido11
46

57
[testenv]
68
changedir=

0 commit comments

Comments
 (0)