Skip to content

Commit

Permalink
Add python 3.6 and 3.7 in testing matrix (#166)
Browse files Browse the repository at this point in the history
As python 3.7 doesn't pass the tests yet, let's declare it as expected
failure until we explicitely add support for it.
  • Loading branch information
ticosax authored and lyschoening committed Jan 30, 2019
1 parent 195ec75 commit a3cfccf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
dist: xenial
services:
- mongodb
language: python
python:
- "2.7"
- "3.4"
- "3.5"
matrix:
include:
- python: "2.7"
- python: "3.4"
- python: "3.5"
- python: "3.6"
- python: "3.7"
allow_failures:
- python: "3.7"
install:
- "pip install ."
- pip install coveralls
script: coverage run --source=flask_potion setup.py test
after_success:
- coveralls
- coveralls
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
],
Expand Down

0 comments on commit a3cfccf

Please sign in to comment.