diff options
| author | 2021-02-03 19:17:00 -0500 | |
|---|---|---|
| committer | 2021-02-03 19:17:00 -0500 | |
| commit | 3a0d66f07b112b6d2bdc2b57bbf717a89a351ce6 (patch) | |
| tree | a7cf56282e54f05785243bc1e903d6594f2c06ba /appveyor.yml | |
| parent | 787b97a4cb24330b36f11297c6d3a7a473a907d0 (diff) | |
New upstream version 8.1.2.upstream/8.1.2
Diffstat (limited to 'appveyor.yml')
| -rw-r--r-- | appveyor.yml | 17 |
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" |
