Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test coverage to Py3.7, Py3.8, Py3.9 #65

Merged
merged 1 commit into from
Oct 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ def read(*filenames, **kwargs):
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Framework :: Flake8',
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
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