Files
cibuildwheel/.travis.yml
T

33 lines
616 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
2018-05-02 22:39:24 +02:00
python: 3.4
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
before_install:
- brew update
2018-03-31 12:36:27 +02:00
- brew outdated python || brew upgrade python
2018-05-02 22:39:24 +02:00
install: $PYTHON -m pip install -r requirements-dev.txt
script: $PYTHON ./bin/run_tests.py