forked from pythonarcade/arcade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
32 lines (25 loc) · 855 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
environment:
PASS:
secure: "ni4lUD07eVM5LR2qdot9b/eJZTf89cl0st/9/9wRcaw="
USER:
secure: "vqkRNxewT2z/PD+0VquHTA=="
COVERALLS_REPO_TOKEN:
secure: rAutnXmt6Uqrtbi7shwIii97qFj0dxwjhRRno6vlqL+Oa/StGUo2oZW8J8g0VVwx
matrix:
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.0"
PYTHON_ARCH: "32"
install:
- "%PYTHON%\\Scripts\\pip.exe install wheel twine pillow pyglet coverage coveralls numpy"
build_script:
- "%PYTHON%\\python.exe setup.py build"
test_script:
- "%PYTHON%\\Scripts\\coverage run --source=arcade setup.py test"
deploy_script:
- "%PYTHON%\\python.exe setup.py sdist bdist bdist_wheel bdist_wininst bdist_egg"
artifacts:
- path: dist\*
on_success:
# - "%PYTHON%\\Scripts\\coverage report"
# - "%PYTHON%\\Scripts\\coveralls"
# - "%PYTHON%/Scripts/twine upload -u %USER% -p %PASS% -r pypi dist/*"