forked from missionpinball/mpf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
36 lines (26 loc) · 1.06 KB
/
appveyor.yml
File metadata and controls
36 lines (26 loc) · 1.06 KB
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
environment:
global:
MPF_VERSION: 0.55
matrix:
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python37-x64"
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python38-x64"
pypi_password:
secure: rCMmmOBIvdX3F9PXj/Vx8dgJFtLMcY7uYLR/6hlV8wZow8AUr1l76s+vfe5YDT6sWuWg2hMUW61pMIE2fOmQw6Echq82ALz/rp85CBUMLic/ZPZMKiJMab7hVSA5460tI3vfmgKo7+FTOVyQEXTc4jiejRpbCkHmlbyPWjI0rXRZU3LJLu3wU21tyzPZS8L73nVu+Knfq52fMMpWFIOvKr61GhkPDFEpRN8EckUYFVqu8w9L352QbDH/526jFUr3BU03oz0LaXuWfHqAksih4w==
install:
- "git submodule update --init --recursive"
- "%PYTHON%\\python.exe -m pip install -U setuptools wheel pip mock twine"
- "%PYTHON%\\python.exe -m pip install -e ."
build: off
test_script:
- "%PYTHON%\\python.exe -m unittest discover -s mpf.tests"
after_test:
- "%PYTHON%\\python.exe setup.py sdist --formats=gztar"
- "%PYTHON%\\python.exe setup.py bdist_wheel"
artifacts:
- path: dist\*
deploy_script:
- "%PYTHON%\\python.exe -m twine upload -u __token__ -p %pypi_password% --skip-existing dist/*"