forked from missionpinball/mpf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
38 lines (28 loc) · 879 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
38
environment:
global:
MPF_VERSION: 0.50
matrix:
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
pypi_user:
secure: /UlFCFSXuqY1JAsOwKZdFg==
pypi_password:
secure: j1I2BPfJaYmFsQGsR8IWBQ==
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 %pypi_user% -p %pypi_password% --skip-existing dist/*"