forked from movingpandas/movingpandas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
24 lines (22 loc) · 677 Bytes
/
.travis.yml
File metadata and controls
24 lines (22 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: python
python:
- "3.7"
install:
# Install conda
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes --set changeps1 no
- conda update conda
- conda info
# Install dependencies
- conda env create --file=environment.yml
- source activate movingpandas
- conda install pytest-cov
- conda install codecov
- conda list
- python -c "import geopandas; geopandas.show_versions();"
script:
- pytest --cov-report xml --cov=movingpandas
after_success:
- codecov # submit coverage