summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
blob: 52e4cdad5d1d9d987f38f199dacf581a9193b640 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# stolen from https://github.com/jakubroztocil/httpie/blob/master/appveyor.yml
build: false
environment:
  matrix:
    - PYTHON: "C:/Python27"
    #- PYTHON: "C:/Python34"
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"
  - "py.test tests/"
  - "nikola"
  - "nikola help"