-
Notifications
You must be signed in to change notification settings - Fork 54
/
appveyor.yml
34 lines (26 loc) · 856 Bytes
/
appveyor.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
build: false
environment:
matrix:
- MINICONDA: C:\Miniconda35
PYTHON_VERSION: 3.5
platform: x64
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%MINICONDA%\\Library\\bin;%PATH%"
install:
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels conda-forge
- conda update -q conda
- "conda create --quiet --name test-environment python=%PYTHON_VERSION% pandas --file requirements.txt --file requirements_geo.txt"
- activate test-environment
- "echo done"
test_script:
- pytest
after_test:
- python.exe setup.py bdist_wheel
- rm -rf tests/coverages
- if not exist dist mkdir dist
- if exist .coverage (cp .coverage dist\) else (echo no .coverage)
- if exist coverage.xml (cp coverage.xml dist\) else (echo no coverage.xml)
artifacts:
- path: dist\*