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 c191ab5
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 13 deletions.
20 changes: 14 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
language: python
python: 3.5
matrix:
include:
env: TOX_ENV=py36
python: "3.6"
- 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=py27
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=lint
install: pip install tox
script: tox -e $TOX_ENV
Expand Down
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
20 changes: 14 additions & 6 deletions travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,23 @@ sudo: required
services:
- docker
language: python
python: "3.5"
matrix:
include:
env: TOX_ENV=py36
python: "3.6"
- 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=py27
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=lint
- TOX_ENV=isort
install: pip install tox
Expand Down

0 comments on commit c191ab5

Please sign in to comment.