Files
bob-builder-1/.travis.yml
Ed Morley dea1b170a8 Allow Travis run to fail on Python 3
I'll file a separate issue for adding Python 3 support.
2017-05-30 23:10:07 +01:00

23 lines
396 B
YAML

sudo: false
dist: trusty
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install .
- pip install -r requirements.txt
script:
- flake8
# TODO: Replace with an actual test suite:
# https://github.com/kennethreitz/bob-builder/issues/31
- bob --help
matrix:
allow_failures:
- python: "3.4"
- python: "3.5"
- python: "3.6"
fast_finish: true