Skip to content

Commit

Permalink
Add test coverage to Py3.7, Py3.8, Py3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
javulticat committed Feb 14, 2021
1 parent 32647a9 commit 4f338f2
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 18 deletions.
23 changes: 15 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
language: python
python: 3.5
matrix:
include:
env: TOX_ENV=py36
python: "3.6"
env:
- TOX_ENV=py27
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=lint
- env: TOX_ENV=py27
python: "2.7"
- env: TOX_ENV=py34
python: "3.4"
- env: TOX_ENV=py35
python: "3.5"
- env: TOX_ENV=py36
python: "3.6"
- env: TOX_ENV=py37
python: "3.7"
- env: TOX_ENV=py38
python: "3.8"
- env: TOX_ENV=py39
python: "3.9"
- env: TOX_ENV=lint
install: pip install tox
script: tox -e $TOX_ENV
cache: pip
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, py35, py36, lint
envlist = py27, py34, py35, py36, py37, py38, py39, lint

[testenv]
deps =
Expand Down
25 changes: 16 additions & 9 deletions travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,24 @@ sudo: required
services:
- docker
language: python
python: "3.5"
matrix:
include:
env: TOX_ENV=py36
python: "3.6"
env:
- TOX_ENV=py27
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=lint
- TOX_ENV=isort
- env: TOX_ENV=py27
python: "2.7"
- env: TOX_ENV=py34
python: "3.4"
- env: TOX_ENV=py35
python: "3.5"
- env: TOX_ENV=py36
python: "3.6"
- env: TOX_ENV=py37
python: "3.7"
- env: TOX_ENV=py38
python: "3.8"
- env: TOX_ENV=py39
python: "3.9"
- env: TOX_ENV=lint
- env: TOX_ENV=isort
install: pip install tox
script: tox -e $TOX_ENV
cache: pip

0 comments on commit 4f338f2

Please sign in to comment.