mirror of
https://github.com/Andreaierardi/Master-DataScience-Notes.git
synced 2024-11-06 20:17:07 +01:00
13 lines
250 B
YAML
13 lines
250 B
YAML
language: python
|
|
python:
|
|
- "3.6" # current default Python on Travis CI
|
|
- "3.7"
|
|
- "3.8"
|
|
- "nightly" # nightly build
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -r requirements.txt
|
|
# command to run tests
|
|
script:
|
|
- pytest
|