Created
December 19, 2019 15:02
-
-
Save martync/9c424935342ce0492eed14f9093aaf21 to your computer and use it in GitHub Desktop.
Travis
This file contains 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
# 1 - Se créer un compte sur https://travis-ci.com/ | |
# 2 - Ajouter votre répo à Travis | |
# 3 - Ajouter ce fichier à votre répo puis commit+push | |
language: python | |
python: | |
- 3.5 | |
- 3.6 | |
before_install: | |
- pip install -U pytest | |
install: | |
- pip install pandas peewee matplotlib haversine | |
script: pytest -v # run tests |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment