forked from pysal/spint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
executable file
·62 lines (55 loc) · 1.62 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
language: python
dist: xenial
sudo: true
branches:
only:
- master
python:
- 3.6
- 3.7
env:
- PYSAL_PYPI=true #testing on dependencies libpysal, esda, mapcalssify on pypi
- PYSAL_PYPI=false
matrix:
allow_failures:
- python: 3.6
env: PYSAL_PYPI=false
- python: 3.7
env: PYSAL_PYPI=false
before_install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b -p ./miniconda
- export PATH=`pwd`/miniconda/bin:$PATH
- conda update --yes conda
- conda config --append channels conda-forge
- conda create -y -q -n test-env python=$TRAVIS_PYTHON_VERSION
- source activate test-env
install:
- conda install --yes pip
- pip install -r requirements.txt
- pip install -r requirements_tests.txt
- if "$PYSAL_PYPI"; then
echo 'testing pypi libpysal spreg spglm';
else
echo 'testing git libpysal spreg spglm';
git clone https://github.com/pysal/libpysal.git;
cd libpysal; pip install .; cd ../;
git clone https://github.com/pysal/spreg.git;
cd spreg; pip install .; cd ../;
git clone https://github.com/pysal/spglm.git;
cd spglm; pip install .; cd ../;
fi;
script:
- python setup.py sdist >/dev/null
- python setup.py install
- python -c 'import libpysal; libpysal.examples.load_example("nyc_bikes")'
- nosetests --verbose --with-doctest --with-coverage --cover-package=spint;
notifications:
email:
recipients:
on_change: change
on_failure: always
after_success:
- coveralls