forked from cookiecutter/cookiecutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
67 lines (49 loc) · 1.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# What Python version is installed where:
# http://www.appveyor.com/docs/installed-software#python
environment:
matrix:
- PYTHON: "C:\\Python27"
TOXENV: "py27"
- PYTHON: "C:\\Python27-x64"
TOXENV: "py27"
- PYTHON: "C:\\Python35"
TOXENV: "py35"
- PYTHON: "C:\\Python35-x64"
TOXENV: "py35"
- PYTHON: "C:\\Python36"
TOXENV: "py36"
- PYTHON: "C:\\Python36-x64"
TOXENV: "py36"
- PYTHON: "C:\\Python37"
TOXENV: "py37"
- PYTHON: "C:\\Python37-x64"
TOXENV: "py37"
- PYTHON: "C:\\Python38"
TOXENV: "py38"
- PYTHON: "C:\\Python38-x64"
TOXENV: "py38"
init:
- set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
- "git config --system http.sslcainfo \"C:\\Program Files\\Git\\mingw64\\ssl\\certs\\ca-bundle.crt\""
- "%PYTHON%/python -V"
- "%PYTHON%/python -c \"import struct;print(8 * struct.calcsize(\'P\'))\""
install:
- "%PYTHON%/Scripts/easy_install -U pip"
- "%PYTHON%/Scripts/pip install -U tox virtualenv"
- "%PYTHON%/Scripts/pip install wheel"
build: false # Not a C# project, build stuff at the test step instead.
test_script:
- "%PYTHON%/Scripts/tox"
after_test:
- "%PYTHON%/python setup.py bdist_wheel"
- ps: "ls dist"
on_success:
# Report coverage results to codecov.io
# and export tox environment variables
- "%PYTHON%/Scripts/pip install codecov"
- set OS=WINDOWS
- "%PYTHON%/Scripts/codecov -e TOXENV OS"
artifacts:
- path: dist\*
#on_success:
# - TODO: upload the content of dist/*.whl to a public wheelhouse