dropped pypy3 from travis-ci

This commit is contained in:
Chris Caron 2021-09-18 16:46:01 -04:00
parent a28950c8c0
commit ddb209264b
2 changed files with 1 additions and 11 deletions

View File

@ -8,8 +8,6 @@ matrix:
env: TOXENV=py37
- python: "3.8"
env: TOXENV=py38
- python: "pypy3.5-6.0"
env: TOXENV=pypy3
install:
- pip install codecov

10
tox.ini
View File

@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,pypy3,coverage-report
envlist = py37,py38,coverage-report
skipsdist = true
[testenv]
@ -30,14 +30,6 @@ commands =
coverage run --parallel -m pytest {posargs} apprise_api
flake8 apprise_api --count --show-source --statistics
[testenv:pypy3]
deps=
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
commands =
coverage run --parallel -m pytest {posargs} apprise_api
flake8 apprise_api --count --show-source --statistics
[testenv:coverage-report]
deps = coverage
skip_install = true