Skip to content

Instantly share code, notes, and snippets.

@martync
Created December 19, 2019 15:02
Show Gist options
  • Save martync/9c424935342ce0492eed14f9093aaf21 to your computer and use it in GitHub Desktop.
Save martync/9c424935342ce0492eed14f9093aaf21 to your computer and use it in GitHub Desktop.
Travis
# 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