Skip to content

Commit

Permalink
Add appveyor configuration file for continuous integration
Browse files Browse the repository at this point in the history
  • Loading branch information
wagnerpeer committed Jun 19, 2019
1 parent c0ab83d commit c5cd0ad
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
image:
- Visual Studio 2017

environment:
matrix:
- TOXENV: "py3.5"
PY_DIR: C:\Python35-x64
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
- TOXENV: "py3.6"
PY_DIR: C:\Python36-x64
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
- TOXENV: "py3.7"
PY_DIR: C:\Python37-x64
PYTHON_VERSION: "3.7"
PYTHON_ARCH: "64"

build: off

init:
- cmd: set PATH=%PY_DIR%;%PY_DIR%\Scripts;%PATH%

install:
- pip install tox

test_script:
- tox

0 comments on commit c5cd0ad

Please sign in to comment.