-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
appveyor.yml
47 lines (35 loc) · 1.28 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
38
39
40
41
42
43
44
45
46
47
environment:
TOX_TESTENV_PASSENV: DISTUTILS_USE_SDK MSSdk INCLUDE LIB
# https://packaging.python.org/guides/supporting-windows-using-appveyor/#testing-with-tox
matrix:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python
- PYTHONDIR: "C:\\Python27-x64"
TOXENV: py
- PYTHONDIR: "C:\\Python36-x64"
TOXENV: py3-numba
matrix:
allow_failures:
- PYTHONDIR: "C:\\Python27-x64"
notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: false
install:
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
# Install Python packages
- "%PYTHONDIR%\\python.exe -m pip install --quiet tox"
build_script:
# Empty so that it doesn't think it needs Visual Studio?
- echo 'test'
test_script:
- "SET PYTHON=%PYTHONDIR%\\python.exe"
- "%PYTHONDIR%\\scripts\\tox -- --cov diffeqpy"
artifacts:
# bdist_wheel puts your built wheel in the dist directory
- path: dist\*
#on_success:
# You can use this step to upload your artifacts to a public website.
# See Appveyor's documentation for more details. Or you can simply
# access your wheels from the Appveyor "artifacts" tab for your build.