forked from aio-libs/aiohttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
35 lines (28 loc) · 967 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
environment:
PYPI_PASSWD:
secure: u+K6dKi7+CXXVFEUG4V7zUyV3w7Ntg0Ork/RGVV0eSQ=
matrix:
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
install:
- "tools/build.cmd %PYTHON%\\python.exe -m pip install -U wheel setuptools"
- "tools/build.cmd %PYTHON%\\python.exe -m pip install -r requirements/ci.txt"
build: false
test_script:
- "tools/build.cmd %PYTHON%\\python.exe setup.py test"
after_test:
- "tools/build.cmd %PYTHON%\\python.exe setup.py sdist bdist_wheel"
artifacts:
- path: dist\*
deploy_script:
- ps: >-
if($env:appveyor_repo_tag -eq 'True') {
Invoke-Expression "$env:PYTHON\\python.exe -m twine upload dist/* --username andrew.svetlov --password $env:PYPI_PASSWD"
}
#notifications:
# - provider: Webhook
# url: https://ci.appveyor.com/api/github/webhook?id=08c7793w1tp839fl
# on_build_success: false
# on_build_failure: True