Skip to content

Commit

Permalink
Use pypy/pypy3
Browse files Browse the repository at this point in the history
The pypy command/env names are not analogous to python and don't include
the minor version in the name (in Debian or the upstream executables -
some distributions might).

Signed-off-by: Kevin Locke <[email protected]>
  • Loading branch information
kevinoid committed Oct 20, 2020
1 parent 921702f commit ef31eb3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ matrix:
- python: 3.9
env: TOXENV=docs,lint,py39
- python: pypy
env: TOXENV=pypy27
- python: pypy3.5
env: TOXENV=pypy35
env: TOXENV=pypy
- python: pypy3
env: TOXENV=pypy3

install:
- pip install codecov coveralls tox
Expand Down
6 changes: 2 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@ environment:
# Commented since already checked using Travis CI
# TOXENV: "docs,lint,py38"
TOXENV: py38
- python: pypy
env: TOXENV=pypy27
- python: pypy3.5
env: TOXENV=pypy35
- TOXENV: pypy
- TOXENV: pypy3

# If the package has arch-dependent features, uncomment this and add -x64
# versions to matrix above (and possibly excluding non-x64 on x86 platform).
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ envlist =
py27,
py34,
py39,
pypy27,
pypy35
pypy,
pypy3
isolated_build = true

[testenv]
Expand Down

0 comments on commit ef31eb3

Please sign in to comment.