Added PyPy 3.7 tests
This commit is contained in:
parent
5ddd72b192
commit
c844e2fa4a
2 changed files with 9 additions and 1 deletions
|
|
@ -23,6 +23,14 @@ pipeline:
|
||||||
- pip install -e .[ci]
|
- pip install -e .[ci]
|
||||||
- tox -e py37
|
- tox -e py37
|
||||||
|
|
||||||
|
test-3.7-pypy:
|
||||||
|
group: test
|
||||||
|
image: pypy:3-7-slim
|
||||||
|
pull: true
|
||||||
|
commands:
|
||||||
|
- pip install -e .[ci]
|
||||||
|
- tex -e pypy37
|
||||||
|
|
||||||
test-3.6:
|
test-3.6:
|
||||||
group: test
|
group: test
|
||||||
image: python:3.6-alpine
|
image: python:3.6-alpine
|
||||||
|
|
|
||||||
2
tox.ini
2
tox.ini
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py36,py37,py38,py39,lint
|
envlist = py36,py37,pypy37,py38,py39,lint
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps = .[test]
|
deps = .[test]
|
||||||
|
|
|
||||||
Reference in a new issue