Skip to content

Commit f2b7dfa

Browse files
author
Rémy HUBSCHER
committed
Add py36 to tox.
1 parent 5bb2f1a commit f2b7dfa

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

.travis.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
dist: trusty
22
language: python
33
python: 3.5
4-
script: make test
5-
after_success: coveralls
4+
env:
5+
- TOX_ENV=py35
6+
- TOX_ENV=flake8
7+
script:
8+
- tox -e $TOX_ENV
9+
after_success:
10+
# Report coverage results to coveralls.io
11+
- pip install coveralls
12+
- coveralls
613
matrix:
714
include:
815
- python: 3.6
16+
env:
17+
- TOX_ENV=py36

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
[tox]
22
downloadcache = {toxworkdir}/cache/
3-
envlist = py35,flake8
3+
envlist = py35,py36,flake8
44

55
[testenv]
66
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
77
deps = -rrequirements-test.txt
8-
coveralls
98

109
commands =
1110
pytest -s --cov-config .coveragerc --cov smwogger smwogger/tests
12-
- coveralls
1311

1412
[testenv:flake8]
1513
commands = flake8 smwogger

0 commit comments

Comments
 (0)