Files
cibuildwheel/.travis.yml
T

39 lines
792 B
YAML
Raw Normal View History

language: generic
2017-09-01 13:49:39 +01:00
matrix:
include:
# Linux Python 2
- sudo: required
language: python
2018-05-02 22:39:24 +02:00
python: 2.7
services: docker
env: PYTHON=python
# Linux Python 3
2017-08-14 23:19:39 +01:00
- sudo: required
language: python
2019-09-28 19:24:16 +02:00
python: 3.5
2018-05-02 22:39:24 +02:00
services: docker
env: PYTHON=python
# macOS Python 2
- os: osx
2018-05-02 22:39:24 +02:00
env: PYTHON=python2
# macOS Python 3
2017-08-14 23:19:39 +01:00
- os: osx
2018-05-02 22:39:24 +02:00
env: PYTHON=python3
- os: windows
language: shell
before_install:
- choco install python3 --version 3.6.8 --no-progress -y
install:
- C:\\Python36\\python -m pip install -r requirements-dev.txt
script:
- C:\\Python36\\python ./bin/run_tests.py
2018-05-02 22:39:24 +02:00
install: $PYTHON -m pip install -r requirements-dev.txt
script: $PYTHON ./bin/run_tests.py