Skip to content

Commit

Permalink
Add travis configuration file.
Browse files Browse the repository at this point in the history
  • Loading branch information
AGTGreg committed Jul 23, 2019
1 parent 308a481 commit 28450e2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = py34, py35, py36, py37, flake8
envlist = py35, py36, py37, flake8
skip_missing_interpreters = true

[testenv]
Expand Down
11 changes: 11 additions & 0 deletions travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

sudo: false
language: python
python:
- 3.5
- 3.6
- 3.7
install: pip install tox-travis coveralls
script:
- tox
- if [ $TRAVIS_TEST_RESULT -eq 0 ]; then coveralls; fi

0 comments on commit 28450e2

Please sign in to comment.