@@ -7,6 +7,7 @@ branches:
7
7
python :
8
8
- 3.6
9
9
- 3.7
10
+ - 3.8
10
11
11
12
env :
12
13
- PYSAL_PYPI=true MPLBACKEND='pdf'
@@ -16,11 +17,11 @@ matrix:
16
17
allow_failures : # allow travis tests to fail if using the github version of libpysal
17
18
- python : 3.6
18
19
env : PYSAL_PYPI=false MPLBACKEND='pdf'
19
- - python : 3.7
20
- env : PYSAL_PYPI=false MPLBACKEND='pdf'
20
+ - python : 3.6
21
+ env : PYSAL_PYPI=true MPLBACKEND='pdf'
21
22
22
23
before_install :
23
- - wget https://repo.continuum.io/miniconda/Miniconda -latest-Linux-x86_64.sh -O miniconda.sh
24
+ - wget https://repo.continuum.io/miniconda/Miniconda3 -latest-Linux-x86_64.sh -O miniconda.sh
24
25
- chmod +x miniconda.sh
25
26
- ./miniconda.sh -b -p ./miniconda
26
27
- export PATH=`pwd`/miniconda/bin:$PATH
@@ -33,6 +34,7 @@ install:
33
34
- conda install --yes pip
34
35
- pip install -r requirements.txt
35
36
- pip install -r requirements_tests.txt
37
+ - conda install --yes -c conda-forge pygeos shapely geopandas
36
38
# configure dual tests (for dependency libpysal)
37
39
- if "$PYSAL_PYPI"; then
38
40
echo 'testing pypi libpysal' && pip install libpysal;
@@ -45,7 +47,8 @@ install:
45
47
script :
46
48
- python setup.py sdist >/dev/null
47
49
- python setup.py install
48
- - nosetests --verbose --with-coverage --cover-package=pointpats;
50
+ # - nosetests --verbose --with-coverage --cover-package=pointpats;
51
+ - pytest pointpats
49
52
50
53
notifications :
51
54
email :
0 commit comments