Browse Source

Save CI resources by disabling builds on PyPy 3.7 and PyPy 3.8 (#698)

pull/681/head^2
Andreas Motl 2 years ago committed by GitHub
parent
commit
e5523179d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .travis.yml
  2. 2
      tox.ini

4
.travis.yml

@ -22,10 +22,6 @@ matrix:
# PyPy Environments
- python: "pypy3.6-7.3.3"
env: TOXENV=pypy36
- python: "pypy3.7-7.3.9"
env: TOXENV=pypy37
- python: "pypy3.8-7.3.9"
env: TOXENV=pypy38
- python: "pypy3.9-7.3.9"
env: TOXENV=pypy39
# An extra environment where additional packages are not installed

2
tox.ini

@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,py38,py39,py310,pypy36,pypy37,pypy38,pypy39,bare,coverage-report
envlist = py36,py37,py38,py39,py310,pypy36,pypy39,bare,coverage-report
[testenv]

Loading…
Cancel
Save