Skip to content

Commit 077bafd

Browse files
committed
refs #265, add py37 to travis
1 parent c8f7f60 commit 077bafd

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,20 @@ deploy:
2020
VGRrZElJZUpjWVpFRDgxbDRZcS8vb0h5K1Vsb1NZd1RFMHM5QlFaVmVhN3Urakk1ZzEyYXdmSUkr
2121
MGM5YUI3cEN6Y2ZhNXdGNkJHdkVNQlg5c3ZCYkZEY1dpR3NJeDloRWJLTkQ5T1hjTy8ycWFRcG89
2222
true:
23-
python: 3.6
23+
python: 3.7
2424
repo: fantix/gino
2525
tags: true
2626
install: pip install -U tox-travis coverage coveralls
2727
language: python
2828
python:
2929
- 3.5
3030
- 3.6
31+
- 3.7
32+
dist: xenial
33+
sudo: required
3134
script: tox
3235
after_success:
33-
- if [[ $TRAVIS_PYTHON_VERSION = "3.6" ]]; then coverage report; fi
34-
- if [[ $TRAVIS_PYTHON_VERSION = "3.6" ]]; then coveralls; fi
36+
- if [[ $TRAVIS_PYTHON_VERSION = "3.7" ]]; then coverage report; fi
37+
- if [[ $TRAVIS_PYTHON_VERSION = "3.7" ]]; then coveralls; fi
3538
services:
3639
- postgresql

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
[tox]
2-
envlist = py35, py36, flake8
2+
envlist = py35, py36, py37, flake8
33

44
[travis]
55
python =
6-
3.5: py35
6+
3.5: py35, flake8
77
3.6: py36, flake8
8+
3.7: py37, flake8
89

910
[testenv:flake8]
1011
basepython=python

0 commit comments

Comments
 (0)