-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.travis.yml
33 lines (31 loc) · 1.24 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
32
33
language: python
sudo: false
python:
- '2.7'
- '3.5'
- '3.6'
install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
-O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
-O miniconda.sh; fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- |
conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pip numpy pandas pytest matplotlib scipy statsmodels
- source activate test-environment
- conda list
- pip install https://github.com/UDST/orca/archive/master.zip
- pip install https://github.com/pksohn/urbansim/archive/python3.zip
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then pip install pandana; else
pip install https://github.com/UDST/osmnet/archive/python3-support.zip &&
pip install https://github.com/UDST/pandana/archive/python3-support.zip; fi
- pip install .
- cd .. && git clone -b python3 [email protected]:urbansim/urbansim_parcels.git
- pip install ./urbansim_parcels
script:
- cd "$TRAVIS_BUILD_DIR" && py.test
- cd ../urbansim_parcels/sf_example && python simulate.py