commit 6a9d6f011f75ffb68396c6d30319512f169717bf parent 9499724f57a321cea2c0214fd496630224f40b22 Author: Daniel Moch <daniel@danielmoch.com> Date: Wed, 29 Aug 2018 21:18:16 -0400 Add appveyor.yml Diffstat:
A | appveyor.yml | | | 16 | ++++++++++++++++ |
1 file changed, 16 insertions(+), 0 deletions(-)
diff --git a/appveyor.yml b/appveyor.yml @@ -0,0 +1,16 @@ +environment: + matrix: + # For Python versions available on Appveyor, see + # http://www.appveyor.com/docs/installed-software#python + - PYTHON: "C:\\Python35-x64" + - PYTHON: "C:\\Python36" + - PYTHON: "C:\\Python37" + +install: + - "%PYTHON%\\python.exe -m pip install pyenv" + - "%PYTHON%\\python.exe -m pipenv --bare install --dev --skip-lock" + +build: off + +test_script: +- "%PYTHON%\\python.exe -m pipenv run python -m pytest"