Create appveyor.yml

This commit is contained in:
Brian Martin 2019-03-18 23:33:35 -04:00 committed by GitHub
parent d2a95f0168
commit f29c9a70ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

22
appveyor.yml Normal file
View file

@ -0,0 +1,22 @@
environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
- PYTHON: "C:\\Python37"
install:
- pip install pipenv
- pipenv --python 3
- pipenv install --dev
build: off
test_script:
# Put your test command here.
# 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.
- "pipenv run nosetests"