59 lines
1.3 KiB
YAML
59 lines
1.3 KiB
YAML
environment:
|
|
matrix:
|
|
- PYTHON: "C:\\Python27"
|
|
PYTHON_VERSION: "2.7.x"
|
|
PYTHON_ARCH: "32"
|
|
TOXENV: "py27"
|
|
|
|
- PYTHON: "C:\\Python34"
|
|
PYTHON_VERSION: "3.4.x"
|
|
PYTHON_ARCH: "32"
|
|
TOXENV: "py34"
|
|
|
|
- PYTHON: "C:\\Python35"
|
|
PYTHON_VERSION: "3.5.x"
|
|
PYTHON_ARCH: "32"
|
|
TOXENV: "py35"
|
|
|
|
- PYTHON: "C:\\Python27-x64"
|
|
PYTHON_VERSION: "2.7.x"
|
|
PYTHON_ARCH: "64"
|
|
TOXENV: "py27"
|
|
|
|
- PYTHON: "C:\\Python34-x64"
|
|
PYTHON_VERSION: "3.4.x"
|
|
PYTHON_ARCH: "64"
|
|
TOXENV: "py34"
|
|
|
|
- PYTHON: "C:\\Python35-x64"
|
|
PYTHON_VERSION: "3.5.x"
|
|
PYTHON_ARCH: "64"
|
|
TOXENV: "py35"
|
|
|
|
install:
|
|
# Prepend Python to the PATH of this build
|
|
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
|
|
|
|
# check that we have the expected version and architecture for Python
|
|
- "python --version"
|
|
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
|
|
|
|
# upgrade pip to avoid out-of-date warnings
|
|
- "pip install --disable-pip-version-check --user --upgrade pip"
|
|
|
|
# install the dependencies to run the tests
|
|
- "pip install -r dev-requirements.txt"
|
|
|
|
build: false
|
|
|
|
test_script:
|
|
- "tox"
|
|
|
|
notifications:
|
|
- provider: Email
|
|
to:
|
|
- fonttools@googlegroups.com
|
|
on_build_success: false
|
|
on_build_failure: true
|
|
on_build_status_changed: true
|