-
Notifications
You must be signed in to change notification settings - Fork 26
/
.travis.yml
31 lines (22 loc) · 1 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
language: python
before_install:
# Here we just install Miniconda, which you shouldn't have to change.
- wget "https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh" -O miniconda.sh;
- chmod +x miniconda.sh;
- ./miniconda.sh -b -p /home/travis/miniconda;
- export PATH=/home/travis/miniconda/bin:$PATH;
- echo $PATH;
- ls /home/travis/miniconda/bin;
install:
# Below, include the dependencies you want to install with conda, optionally
# specifying versions used in the matrix above. If you split this into
# multiple conda install commands, you should always include numpy=$NUMPY as
# the first package to install (for every conda install command) otherwise
# numpy may be automatically upgraded.
- conda config --add channels conda-forge
- conda install --yes numpy scipy obspy pandas h5py matplotlib pytest pip
# You can also install some dependencies with pip if not available in conda
- pip install pynmea2 geopy pytz
- pip install .
script:
- readgssi --help