-
Notifications
You must be signed in to change notification settings - Fork 74
/
.appveyor.yml
36 lines (36 loc) · 1.17 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
platform:
- x64
environment:
matrix:
- PYTHON: 27
- PYTHON: 35
- PYTHON: 36
- PYTHON: 37
pypipassword:
# https://ci.appveyor.com/tools/encrypt
secure: OTDy8BHbSmZE4K0JvfAeYQ==
install:
- ps: |
if ($env:PYTHON) {
if ($env:PLATFORM -eq "x64") { $env:PYTHON = "$env:PYTHON-x64" }
$env:PATH = "C:\Python$env:PYTHON\;C:\Python$env:PYTHON\Scripts\;C:\Users\appveyor\AppData\Roaming\Python\Python$env:PYTHON\Scripts;C:\Users\appveyor\AppData\Roaming\Python\Scripts;$env:PATH"
}
build_script:
- ps: cd Python
- cmd: pip install --user -e .[test]
test_script:
- cmd: python setup.py test
deploy_script:
- ps: |
if ($env:APPVEYOR_REPO_BRANCH -ne "master" -or $env:APPVEYOR_REPO_TAG -ne "true") { return }
# Specify account details for PyPI
echo "Deploying..."
mv .pypirc $env:USERPROFILE\\.pypirc
# Workaround required to ensure setup.py finds the .pypirc under Windows
$env:HOME=$env:USERPROFILE
# Install wheel-building support
pip install --user wheel twine
# Build wheel and upload
python setup.py sdist bdist_wheel
twine upload -r pypi -p $env:pypipassword --skip-existing dist/*
echo "Deployment complete"