forked from markovmodel/PyEMMA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
37 lines (30 loc) · 1.1 KB
/
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
35
36
37
environment:
global:
PYTHONHASHSEED: "0"
MINICONDA_PYTHON: "C:\\Miniconda36-x64"
MSSdk: "1"
SET_DISTUTILS_SDK: "1"
matrix:
- CONDA_PY: "36"
NUMPY: "--numpy=112" # "old" numpy
- CONDA_PY: "37"
NUMPY: "" # numpy unpinned
install:
- "SET PATH=%MINICONDA_PYTHON%;%MINICONDA_PYTHON%\\Scripts;%PATH%;"
- conda config --set always_yes true
- conda install -q conda-build=3
build: false # Not a C# project, build stuff at the test step instead.
test_script:
# run testsuite and upload test results to AppVeyor; return exit code of testsuite
- setenv /release /x64
- conda build -c conda-forge -q devtools/conda-recipe %CONDA_NPY%"
on_finish:
# upload test results to AppVeyor
- ps: |
$wc = New-Object 'System.Net.WebClient';
$wc.UploadFile("https://ci.appveyor.com/api/testresults/xunit/$($env:APPVEYOR_JOB_ID)", "C:/Users/appveyor/reports/junit.xml")
after_test:
- ps: |
$env:PATH = 'C:\msys64\usr\bin;' + $env:PATH
Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh
bash codecov.sh -f 'c:\\users\appyeyor\\coverage.xml'