Skip to content

Commit

Permalink
add appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew McCluskey committed Feb 24, 2020
1 parent 2ce50c9 commit a508573
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
environment:
matrix:

# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.

- PYTHON: "C:\\Python36-x64"
MINICONDA: "C:\\Miniconda"
- PYTHON: "C:\\Python37-x64"
MINICONDA: "C:\\Miniconda"
- PYTHON: "C:\\Python38-x64"
MINICONDA: "C:\\Miniconda"
- PYTHON: "C:\\Python39-x64"
MINICONDA: "C:\\Miniconda"

install:
# We need wheel installed to build wheels
- "SET PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- "%PYTHON%\\python.exe -m pip install -U twine wheel setuptools"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
- "set PATH=%PATH%;C:\"%PYTHON%\\Scripts"

build: off

test_script:
# Put your test command here.
# If you don't need to build C extensions on 64-bit Python 3.3 or 3.4,
# you can remove "build.cmd" from the front of the command, as it's
# only needed to support those cases.
# Note that you must use the environment variable %PYTHON% to refer to
# the interpreter you're using - Appveyor does not do anything special
# to put the Python version you want to use on PATH.
- "%PYTHON%\\python.exe setup.py test"

0 comments on commit a508573

Please sign in to comment.