Created
August 14, 2017 18:18
-
-
Save jtemporal/f84f5f55813f1a74b393a506f7493225 to your computer and use it in GitHub Desktop.
Initial Toolbox travis configuration file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: python | |
cache: | |
directories: | |
- $HOME/virtualenv/python3.5.3/ | |
env: | |
- TEST_SUITE=unit | |
- TEST_SUITE=journey | |
python: 3.5 | |
install: | |
- python setup.py develop | |
- pip install coveralls | |
script: coverage run -m unittest discover tests/$TEST_SUITE | |
after_success: coveralls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment