From 9cc9263e4132f7d5a884651b3d674856a1ba5642 Mon Sep 17 00:00:00 2001 From: Ilya Kulakov Date: Tue, 13 Nov 2018 13:13:41 -0800 Subject: [PATCH] Install requirements from requirements.txt on Windows. --- .appveyor.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 05e274e..73b50d6 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -17,5 +17,10 @@ environment: build: off +install: + - "%PYTHON%\\python.exe -m pip install --upgrade pip" + - "%PYTHON%\\python.exe -m pip install --upgrade wheel>=0.30.0 setuptools>=36.6.0" + test_script: - - "%PYTHON%\\python.exe -m setup.py test" + - "%PYTHON%\\python.exe -m pip install -r requirements.txt" + - "%PYTHON%\\python.exe setup.py test"