Skip to content

Commit

Permalink
Add an appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Dec 14, 2015
1 parent b2589c0 commit 7795f07
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
24 changes: 24 additions & 0 deletions appveyor.yml
@@ -0,0 +1,24 @@
version: build-{build}-{branch}

environment:
matrix:
# http://www.appveyor.com/docs/installed-software#python lists available
# versions
- PYTHON: "C:\\Python26"
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"

init:
- "echo %PYTHON%"

install:
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python --version
- pip install tox

build: off

test_script:
- tox -e py
5 changes: 5 additions & 0 deletions tox.ini
Expand Up @@ -8,6 +8,11 @@ commands =
deps =
zope.event

[testenv:py]
commands =
python --version
{[testenv]commands}

[testenv:coverage]
usedevelop = true
basepython =
Expand Down

0 comments on commit 7795f07

Please sign in to comment.