prompt-toolkit/appveyor.yml
Gordon Ball 31ed341b28
Adding upstream version 3.0.19.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-12 16:47:09 +02:00

45 lines
997 B
YAML

environment:
matrix:
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6"
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6"
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5"
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5"
- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4"
- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4"
- PYTHON: "C:\\Python33"
PYTHON_VERSION: "3.3"
- PYTHON: "C:\\Python33-x64"
PYTHON_VERSION: "3.3"
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7"
- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7"
- PYTHON: "C:\\Python26"
PYTHON_VERSION: "2.6"
- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.6"
install:
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- pip install . pytest coverage codecov flake8
- pip list
build: false
test_script:
- If not ($env:PYTHON_VERSION==2.6) flake8 prompt_toolkit
- coverage run -m pytest
after_test:
- codecov