mirror of
https://github.com/kennethreitz/bob-builder-1.git
synced 2026-06-21 15:20:58 +00:00
dea1b170a8
I'll file a separate issue for adding Python 3 support.
23 lines
396 B
YAML
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
|