aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2021-02-03 19:17:50 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2021-02-03 19:17:50 -0500
commit475d074fd74425efbe783fad08f97f2df0c4909f (patch)
tree2acdae53999b3c74b716efa4edb5b40311fa356a /appveyor.yml
parentcd502d52787f666fff3254d7d7e7578930c813c2 (diff)
parent3a0d66f07b112b6d2bdc2b57bbf717a89a351ce6 (diff)
Update upstream source from tag 'upstream/8.1.2'
Update to upstream version '8.1.2' with Debian dir e5e966a9e6010ef70618dc9a61558fa4db35aceb
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml19
1 files changed, 9 insertions, 10 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 07dff1d..bd6b175 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,22 +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:/Python35"
+ - PYTHON: "C:/Python38"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
-install:
- - "%PYTHON%/python.exe -m pip install -U pip"
- - "%PYTHON%/Scripts/pip.exe install --no-index -f https://users.getnikola.com/static/nikola-windows-wheels lxml"
- - "%PYTHON%/Scripts/pip.exe install -r requirements-extras.txt pytest coverage pytest-cov 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"