Skip to content

Commit

Permalink
Merge pull request #156 from nicoddemus/appveyor
Browse files Browse the repository at this point in the history
Add AppVeyor CI
  • Loading branch information
RonnyPfannschmidt committed Oct 25, 2017
2 parents 5186d7d + cddb8d0 commit 3ecb952
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
.. image:: https://img.shields.io/travis/pytest-dev/py.svg
:target: https://travis-ci.org/pytest-dev/py

.. image:: https://img.shields.io/appveyor/ci/pytest-dev/py.svg
:target: https://ci.appveyor.com/project/pytestbot/py


The py lib is a Python development support library featuring
the following tools and modules:

Expand Down
32 changes: 32 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
environment:
matrix:
# note: please use "tox --listenvs" to populate the build matrix below
- TOXENV: "py26-pytest29"
- TOXENV: "py26-pytest30"
- TOXENV: "py26-pytest31"
- TOXENV: "py27-pytest29"
- TOXENV: "py27-pytest30"
- TOXENV: "py27-pytest31"
- TOXENV: "py33-pytest29"
- TOXENV: "py33-pytest30"
- TOXENV: "py33-pytest31"
- TOXENV: "py34-pytest29"
- TOXENV: "py34-pytest30"
- TOXENV: "py34-pytest31"
- TOXENV: "py35-pytest29"
- TOXENV: "py35-pytest30"
- TOXENV: "py35-pytest31"
- TOXENV: "py36-pytest29"
- TOXENV: "py36-pytest30"
- TOXENV: "py36-pytest31"

install:
- echo Installed Pythons
- dir c:\Python*

- C:\Python36\python -m pip install --upgrade --pre tox

build: false # Not a C# project, build stuff at the test step instead.

test_script:
- C:\Python36\python -m tox

0 comments on commit 3ecb952

Please sign in to comment.