Skip to content

Commit a284e2d

Browse files
committed
Tests: add pypy3 tests again
1 parent 4559a1d commit a284e2d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
max-parallel: 4
1010
matrix:
11-
python-version: ["3.6", "3.7", "3.8", "3.9-dev"]
11+
python-version: ["3.6", "3.7", "3.8", "3.9-dev", "pypy3"]
1212

1313
steps:
1414
- uses: actions/checkout@v2

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
black,flake8,import-order,mypy,manifest,
4-
py{36,37,38,39-dev}
4+
py{36,37,38,39-dev,py3}
55

66
[pytest]
77
markers = asyncio
@@ -12,6 +12,7 @@ python =
1212
3.7: py37
1313
3.8: py38
1414
3.9: py39-dev
15+
pypy3: pypy3
1516

1617
[testenv]
1718
passenv = *
@@ -27,7 +28,7 @@ deps = -e.[test]
2728
commands =
2829
pip install -U setuptools
2930
; run "tox -- tests -s" to show output for debugging
30-
py{36,37,39-dev}: pytest {posargs:tests}
31+
py{36,37,39-dev,py3}: pytest {posargs:tests}
3132
py{38}: pytest {posargs:tests --cov-report=term-missing --cov=gql}
3233

3334
[testenv:black]

0 commit comments

Comments
 (0)