Skip to content

Commit

Permalink
Merge pull request #201 from nismod/feature/appveyor
Browse files Browse the repository at this point in the history
Feature/appveyor
  • Loading branch information
tomalrussell authored Aug 15, 2018
2 parents 7d841fd + 3106ccf commit eb5b614
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
build: false
environment:
matrix:
- PYTHON_VERSION: 3.6
MINICONDA: C:\Miniconda3-x64
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels conda-forge
- conda info -a
- "conda create -n testenv --yes python=%PYTHON_VERSION% \
flask \
isodate \
networkx \
numpy \
pint \
pyarrow \
pytest \
python-dateutil \
ruamel.yaml \
rtree \
scikit-optimize \
shapely \
libgdal \
gdal \
fiona"
- activate testenv
- python setup.py develop
test_script:
- python -m pytest

0 comments on commit eb5b614

Please sign in to comment.