Skip to content

Commit

Permalink
Add Appveyor configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mission-liao committed Dec 23, 2017
1 parent 30c05c5 commit b077f5c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions appveyor.yml
@@ -0,0 +1,20 @@
environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"

install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
- "pip install --disable-pip-version-check --user --upgrade pip"
- "pip install -r requirements-dev.txt"

build: off

test_script:
- "python -m pytest -s -v pyswagger/tests"

0 comments on commit b077f5c

Please sign in to comment.