From 17334756442dc6250d8c0508d74b430885fc9587 Mon Sep 17 00:00:00 2001 From: William Pietri Date: Mon, 4 Dec 2017 15:23:06 -0800 Subject: [PATCH] Add Travis CI badge to README --- appveyor.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..8cb965f --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,23 @@ +environment: + + matrix: + + # For Python versions available on Appveyor, see + # http://www.appveyor.com/docs/installed-software#python + + - PYTHON: "C:\\Python35" + +install: + # We need wheel installed to build wheels + - "%PYTHON%\\python.exe -m pip install pipenv" + - "pipenv install -d --system" + +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. + - "nosetests" +