Skip to content

Commit

Permalink
Update appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
rth committed Apr 21, 2018
1 parent a0eb8e1 commit 607dc35
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions appveyor.yml
Expand Up @@ -7,34 +7,32 @@ environment:
# See: http://stackoverflow.com/a/13751649/163740
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_compiler.cmd"
matrix:
- PYTHON_VERSION: 2.7
- PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "64"
MINICONDA: C:\Miniconda-x64
- PYTHON_VERSION: 2.7
- PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "32"
MINICONDA: C:\Miniconda
- PYTHON_VERSION: 3.5
- PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "32"
MINICONDA: C:\Miniconda3
- PYTHON_VERSION: 3.6
MINICONDA: C:\Miniconda35
- PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
MINICONDA: C:\Miniconda3-x64
MINICONDA: C:\Miniconda36-x64

init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH% %MINICONDA%"

install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PYTHON%\\Library\\bin;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda info -a
- conda create -q -n krige-env python=%PYTHON_VERSION% numpy scipy nose matplotlib cython scikit-learn pytest pytest-cov
- activate krige-env
- conda install numpy scipy nose matplotlib cython scikit-learn pytest pytest-cov
- pip install coverage
- pip install -e .


test_script:
- activate krige-env
- pytest -sv --cov=pykrige pykrige/
- ps: |
d ".\\examples"
Expand Down

0 comments on commit 607dc35

Please sign in to comment.