1build: false
2
3environment:
4  matrix:
5    - PYTHON: "C:/Python27"
6    - PYTHON: "C:/Python35"
7
8init:
9  - "ECHO %PYTHON%"
10  - ps: "ls C:/Python*"
11
12install:
13  # FIXME: updating pip fails with PermissionError
14  # - "%PYTHON%/Scripts/pip.exe install -U pip setuptools"
15  - "%PYTHON%/Scripts/pip.exe install -e . .[xmpp]"
16
17test_script:
18  - "%PYTHON%/Scripts/pip.exe --version"
19  - "%PYTHON%/python.exe setup.py test"
20