add pypy3 as a supported environment, by default
This commit is contained in:
parent
b825c36def
commit
7bfa2ac5d4
|
@ -18,6 +18,12 @@ matrix:
|
||||||
# core
|
# core
|
||||||
- python: "3.6"
|
- python: "3.6"
|
||||||
env: TOX_POSARGS="-e py36-core"
|
env: TOX_POSARGS="-e py36-core"
|
||||||
|
#
|
||||||
|
# pypy3 testing
|
||||||
|
#
|
||||||
|
# core
|
||||||
|
- python: "pypy3"
|
||||||
|
env: TOX_POSARGS="-e pypy3-core"
|
||||||
cache:
|
cache:
|
||||||
- pip: true
|
- pip: true
|
||||||
install:
|
install:
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -62,5 +62,6 @@ setup(
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: Implementation :: PyPy3',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
3
tox.ini
3
tox.ini
|
@ -1,6 +1,6 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist=
|
envlist=
|
||||||
py{35,36}-core
|
py{35,36,py3}-core
|
||||||
lint
|
lint
|
||||||
|
|
||||||
[isort]
|
[isort]
|
||||||
|
@ -25,6 +25,7 @@ commands=
|
||||||
basepython =
|
basepython =
|
||||||
py35: python3.5
|
py35: python3.5
|
||||||
py36: python3.6
|
py36: python3.6
|
||||||
|
pypy3: pypy3
|
||||||
extras=test
|
extras=test
|
||||||
|
|
||||||
[testenv:lint]
|
[testenv:lint]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user