Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,25 @@ language: python
sudo: false

python:
- "3.4.5"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"

install:
- python setup.py install
- python setup.py easy_install $(python3 -c 'import distutils.core; print(" ".join(distutils.core.run_setup("setup.py").tests_require))')

cache:
directories:
- "$HOME/.cache/pip"
- lib/python3.4/site-packages
- lib/python3.5/site-packages
- lib/python3.6/site-packages
- lib/python3.7/site-packages
- lib/python3.8/site-packages

script:
- py.test --cov

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup
from setuptools.command.test import test as test_command

tests_require = ['pytest', 'pytest-cov==2.5.1', 'coverage==3.7.1', 'coveralls==1.1']
tests_require = ['pytest', 'pytest-cov==2.5.1', 'coverage==4.4', 'coveralls==1.1']
install_requires = []


Expand Down