2016-03-29 23:35:19 -03:00
|
|
|
build: false
|
|
|
|
|
|
|
|
environment:
|
|
|
|
matrix:
|
|
|
|
- PYTHON: "C:/Python27"
|
|
|
|
- PYTHON: "C:/Python34"
|
|
|
|
- PYTHON: "C:/Python35"
|
2017-01-08 17:08:38 +02:00
|
|
|
- PYTHON: "C:/Python36"
|
2016-03-29 23:35:19 -03:00
|
|
|
|
|
|
|
init:
|
|
|
|
- "ECHO %PYTHON%"
|
|
|
|
- ps: "ls C:/Python*"
|
|
|
|
|
|
|
|
install:
|
2017-10-06 01:14:35 -03:00
|
|
|
- "curl -fsS -o C:/get-pip.py https://bootstrap.pypa.io/get-pip.py"
|
2016-03-29 23:35:19 -03:00
|
|
|
- "%PYTHON%/python.exe C:/get-pip.py"
|
|
|
|
- "%PYTHON%/Scripts/pip.exe install -U setuptools"
|
|
|
|
- "%PYTHON%/python.exe setup.py develop"
|
|
|
|
- "%PYTHON%/Scripts/pip.exe install -U -r requirements.txt"
|
|
|
|
|
|
|
|
test_script:
|
2017-03-08 20:05:23 -05:00
|
|
|
- "%PYTHON%/python.exe -m flake8"
|
2016-03-29 23:35:19 -03:00
|
|
|
- "%PYTHON%/Scripts/py.test.exe -sv"
|