aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml17
1 files changed, 9 insertions, 8 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 52e4cda..bd6b175 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,20 +1,21 @@
-# stolen from https://github.com/jakubroztocil/httpie/blob/master/appveyor.yml
+# based on https://github.com/jakubroztocil/httpie/blob/master/appveyor.yml
build: false
environment:
matrix:
- - PYTHON: "C:/Python27"
- #- PYTHON: "C:/Python34"
+ - PYTHON: "C:/Python38"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
-install:
- - "%PYTHON%/Scripts/pip.exe install -r requirements-extras.txt pytest mock freezegun"
- - "%PYTHON%/Scripts/pip.exe install ."
-
-test_script:
- "set path=%PYTHON%/Scripts;%path%"
- "%PYTHON%/python.exe --version"
- "%PYTHON%/Scripts/pip.exe --version"
+
+install:
+ - "%PYTHON%/python.exe -m pip install --upgrade-strategy eager -U pip setuptools wheel"
+ - "%PYTHON%/python.exe -m pip install --upgrade-strategy eager -Ur requirements-tests.txt"
+ - "%PYTHON%/python.exe -m pip install ."
+
+test_script:
- "py.test tests/"
- "nikola"
- "nikola help"