mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-18 20:11:17 +00:00
60073bea78
* N/A: Remove deprecated python 3.4 support More details - https://www.python.org/downloads/release/python-3410/ * N/A: Remove Python 3.4 from appveyor config * N/A: Fix UnicodeDecodeError with Python 2.7 and newer versions of py.test
24 lines
567 B
YAML
24 lines
567 B
YAML
build: false
|
|
|
|
environment:
|
|
matrix:
|
|
- PYTHON: "C:/Python27"
|
|
- PYTHON: "C:/Python35"
|
|
- PYTHON: "C:/Python36"
|
|
- PYTHON: "C:/Python37"
|
|
|
|
init:
|
|
- "ECHO %PYTHON%"
|
|
- ps: "ls C:/Python*"
|
|
|
|
install:
|
|
- "curl -fsS -o C:/get-pip.py https://bootstrap.pypa.io/get-pip.py"
|
|
- "%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:
|
|
- "%PYTHON%/python.exe -m flake8"
|
|
- "%PYTHON%/Scripts/py.test.exe -sv"
|