mirror of
https://github.com/Andreaierardi/Master-DataScience-Notes.git
synced 2025-01-23 01:37:36 +01:00
10 lines
199 B
YAML
10 lines
199 B
YAML
language: python
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -r requirements.txt
|
|
python:
|
|
- "3.6" # current default Python on Travis CI
|
|
# command to run tests
|
|
script:
|
|
- pytest
|