Skip to content

Commit 1d9b81c

Browse files
committed
Set tox version in github actions
1 parent 94dbaaa commit 1d9b81c

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,19 @@ jobs:
1414
strategy:
1515
max-parallel: 5
1616
matrix:
17+
include:
18+
- python-version: 2.7
19+
tox-version: "py27"
20+
- python-version: 3.6
21+
tox-version: "py36"
22+
- python-version: 3.7
23+
tox-version: "py37"
24+
- python-version: 3.8
25+
tox-version: "py38"
26+
- python-version: 3.9
27+
tox-version: "py39"
28+
include:
29+
-
1730
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9']
1831

1932
steps:
@@ -25,6 +38,6 @@ jobs:
2538

2639
- name: Install Dependencies
2740
run: |
28-
pip install -U tox-travis
41+
pip install -U tox
2942
- name: Run Tests
30-
run: tox
43+
run: tox -e ${{ matrix.tox-version }}

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ test =
5151
pytest-asyncio; python_version>="3.4"
5252
graphene>=2.0,<3
5353
gevent
54-
graphene>=2.0
5554
graphene_django
5655
mock; python_version<"3"
5756
django==1.11.*; python_version<"3"

0 commit comments

Comments
 (0)