mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-29 13:04:02 +03:00
Add PyPy and PyPy3 jobs
This commit is contained in:
parent
e95d1040a1
commit
2bdb73d7ec
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9]
|
python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, pypy2, pypy3]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-python@v2
|
- uses: actions/setup-python@v2
|
||||||
|
@ -17,4 +17,4 @@ jobs:
|
||||||
- run: pip install tox
|
- run: pip install tox
|
||||||
- run: tox
|
- run: tox
|
||||||
env:
|
env:
|
||||||
TOXENV: py${{ matrix.python-version }}
|
TOXENV: ${{ matrix.python-version }}
|
10
tox.ini
10
tox.ini
|
@ -1,6 +1,6 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist=
|
envlist=
|
||||||
coveralls, pylint, flake8, pydocstyle, py2.7, py3.4, py3.5, py3.6, py3.7, py3.8, py3.9, pypy, pypy3
|
coveralls, pylint, flake8, pydocstyle, 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, pypy2, pypy3
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps=
|
deps=
|
||||||
|
@ -31,7 +31,7 @@ commands=
|
||||||
coverage report --rcfile=./.coveragerc
|
coverage report --rcfile=./.coveragerc
|
||||||
coveralls
|
coveralls
|
||||||
|
|
||||||
[testenv:py2.7]
|
[testenv:2.7]
|
||||||
deps=
|
deps=
|
||||||
unittest2
|
unittest2
|
||||||
extras=
|
extras=
|
||||||
|
@ -40,7 +40,7 @@ extras=
|
||||||
commands=
|
commands=
|
||||||
unit2 discover -s tests/unit -p test_*_py2_py3.py
|
unit2 discover -s tests/unit -p test_*_py2_py3.py
|
||||||
|
|
||||||
[testenv:py3.4]
|
[testenv:3.4]
|
||||||
deps=
|
deps=
|
||||||
unittest2
|
unittest2
|
||||||
extras=
|
extras=
|
||||||
|
@ -48,7 +48,7 @@ extras=
|
||||||
commands=
|
commands=
|
||||||
unit2 discover -s tests/unit -p test_*_py3.py
|
unit2 discover -s tests/unit -p test_*_py3.py
|
||||||
|
|
||||||
[testenv:py3.5]
|
[testenv:3.5]
|
||||||
deps=
|
deps=
|
||||||
unittest2
|
unittest2
|
||||||
extras=
|
extras=
|
||||||
|
@ -57,7 +57,7 @@ extras=
|
||||||
commands=
|
commands=
|
||||||
unit2 discover -s tests/unit -p test_*_py3.py
|
unit2 discover -s tests/unit -p test_*_py3.py
|
||||||
|
|
||||||
[testenv:pypy]
|
[testenv:pypy2]
|
||||||
deps=
|
deps=
|
||||||
unittest2
|
unittest2
|
||||||
extras=
|
extras=
|
||||||
|
|
Loading…
Reference in New Issue
Block a user