File tree Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ version : 1.3.{build}
2+
3+ environment :
4+ matrix :
5+ - python : 27
6+ - python : 27-x64
7+ - python : 35
8+ - python : 35-x64
9+ - python : 36
10+ - python : 36-x64
11+
12+ install :
13+ - SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%
14+ - python -m pip.__main__ install -U pip wheel setuptools
15+ - pip install -r requirements-test.txt
16+
17+ build : off
18+ build_script :
19+ # configure version
20+ - ps : >-
21+ If ($env:APPVEYOR_REPO_TAG -Eq "true" ) {
22+ $version = "$env:APPVEYOR_REPO_TAG_NAME"
23+ } Else {
24+ $version = "$env:APPVEYOR_BUILD_VERSION.dev0"
25+ }
26+ $version | Set-Content version.txt
27+ - python setup.py build bdist_wheel
28+ - ps : Get-ChildItem dist\*.whl | % { pip install $_.FullName }
29+
30+ test : off
31+ test_script :
32+ - pip list
33+ - py.test -v tests
34+ - ps : Get-ChildItem dist\*.whl | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
Original file line number Diff line number Diff line change 22. *
33! .editorconfig
44! .travis *
5+ ! .appveyor *
56! .git *
67
78# Python
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ python-xmlsec
33
44.. image :: https://travis-ci.org/mehcode/python-xmlsec.png?branch=master
55 :target: https://travis-ci.org/mehcode/python-xmlsec
6+ .. image :: https://ci.appveyor.com/api/projects/status/20rtt2wv96gag9cy?svg=true
7+ :target: https://ci.appveyor.com/project/bgaifullin/python-xmlsec
68.. image :: https://img.shields.io/pypi/v/xmlsec.svg
79 :target: https://pypi.python.org/pypi/xmlsec
810.. image :: https://img.shields.io/badge/docs-latest-green.svg
You can’t perform that action at this time.
0 commit comments