Skip to content

Commit

Permalink
Add tests in python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Moreno committed May 6, 2020
1 parent 104ca7b commit 07a6c36
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
11 changes: 8 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
language: python
python:
- 2.7
- 3.5
install:
- make requirements
- pip install coveralls
matrix:
include:
- python: 3.5
env: TOXENV=py35
- python: 3.8
env: TOXENV=py38
allow_failures:
- python: 3.8
script:
- make test
- make quality
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ def is_requirement(line):
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
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,py35
envlist = py{35,38}

[testenv]
deps =
Expand Down

0 comments on commit 07a6c36

Please sign in to comment.