blob: bd6b175444c4da759b7ef7595f9da6713e9da733 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# based on https://github.com/jakubroztocil/httpie/blob/master/appveyor.yml
build: false
environment:
matrix:
- PYTHON: "C:/Python38"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
- "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"
|