Skip to content

Commit

Permalink
Merge pull request #565 from johanvdw/py36
Browse files Browse the repository at this point in the history
Run tests on Python 3.6
  • Loading branch information
tomkralidis committed Oct 24, 2018
2 parents f82fa0f + 036ccc8 commit 2a4a495
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ jobs:
script: tox -- --exitfirst -m unit
after_success: codecov --disable search --flags unittests

- stage: unit-test
python: "3.6"
env: TOXENV=py36-sqlite
install: pip install codecov tox
script: tox -- --exitfirst -m unit
after_success: codecov --disable search --flags unittests

- stage: integration-test
python: "2.7"
env: TOXENV=py27-sqlite
Expand All @@ -49,6 +56,12 @@ jobs:
script: tox -- --exitfirst -m functional -k 'not harvesting'
after_success: codecov --disable search --flags integrationtests

- stage: integration-test
python: "3.6"
env: TOXENV=py36-sqlite
install: pip install codecov tox
script: tox -- --exitfirst -m functional -k 'not harvesting'
after_success: codecov --disable search --flags integrationtests

addons:
apt:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ def read(filename, encoding="utf-8"):
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: GIS',
]
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = {py27,py34,py35}-sqlite
envlist = {py27,py34,py35,py36}-sqlite
skip_missing_interpreters = True


Expand Down

0 comments on commit 2a4a495

Please sign in to comment.