From 96ac604c74b333659224155a144b1716dece79d2 Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Sun, 30 Sep 2018 19:16:54 -0700 Subject: [PATCH] Run tests on windows --- .appveyor.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..1921526 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,25 @@ +environment: + global: + TOXENV: py + + matrix: + - PYTHON: C:\Python36-x64 + - PYTHON: C:\Python27-x64 + +init: + - SET PATH=%PYTHON%;%PATH% + +install: + - python -m pip install -U tox + +build: false + +test_script: + - python -m tox + +branches: + only: + - master + +cache: + - '%LOCALAPPDATA%\pip\Cache'