1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-06 02:41:10 +01:00
thefuck/appveyor.yml

24 lines
567 B
YAML
Raw Normal View History

2016-03-30 03:35:19 +01:00
build: false
environment:
matrix:
- PYTHON: "C:/Python27"
- PYTHON: "C:/Python34"
- PYTHON: "C:/Python35"
2017-01-08 15:08:38 +00:00
- PYTHON: "C:/Python36"
2016-03-30 03:35:19 +01:00
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- "curl -fsS -o C:/get-pip.py https://bootstrap.pypa.io/get-pip.py"
2016-03-30 03:35:19 +01: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-09 01:05:23 +00:00
- "%PYTHON%/python.exe -m flake8"
2016-03-30 03:35:19 +01:00
- "%PYTHON%/Scripts/py.test.exe -sv"