-
Notifications
You must be signed in to change notification settings - Fork 12
/
appveyor.yml
37 lines (29 loc) · 954 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
35
36
37
environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
- PYTHON_VERSION: 3.6
MINICONDA: "C:\\Miniconda36"
- PYTHON_VERSION: 3.6
MINICONDA: "C:\\Miniconda36-x64"
- PYTHON_VERSION: 3.7
MINICONDA: "C:\\Miniconda37"
- PYTHON_VERSION: 3.7
MINICONDA: "C:\\Miniconda37-x64"
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- "conda create -q -n test-environment python=%PYTHON_VERSION% wheel setuptools nose %MSVC_RUNTIME% numpy scipy"
- activate test-environment
- pip install pybind11
build: off
test_script:
- python setup.py nosetests --verbosity=2
after_test:
# build the wheels
- python setup.py bdist_wheel
artifacts:
# bdist_wheel puts the built wheel in the dist directory
- path: dist\*