Skip to content

Commit

Permalink
Add build support for appveyor
Browse files Browse the repository at this point in the history
Close #409
  • Loading branch information
tpazderka committed Dec 12, 2017
1 parent fafdb53 commit e5ba41b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
environment:
matrix:
- PYTHON: "C:\\Python27"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python27-x64"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python34"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python34-x64"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python35"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python35-x64"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python36"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python36-x64"
PYTHON_ARCH: "64"

install:
- "%PYTHON%\\python.exe -m pip install .[testing]"

build: off

test_script:
- "%PYTHON%\\python.exe -m pytest tests/ -m \"not network\""
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
.. image:: https://api.travis-ci.org/OpenIDC/pyoidc.png?branch=master
:target: https://travis-ci.org/OpenIDC/pyoidc

.. image:: https://ci.appveyor.com/api/projects/status/9kd2u37pi9n2wt63/branch/master?svg=true
:target: https://ci.appveyor.com/project/tpazderka/pyoidc/branch/master

.. image:: https://img.shields.io/pypi/pyversions/oic.svg
:target: https://pypi.python.org/pypi/oic

Expand Down

0 comments on commit e5ba41b

Please sign in to comment.