mirror of
https://github.com/kennethreitz/bob-builder-1.git
synced 2026-06-21 07:11:00 +00:00
840c089864
This brings Python 3 compatibility With this change, all output from the formula ends up on stdout, without any buffering, meaning e.g. progress bars (from curl for instance) also finally show up in real time, without line buffering like before
17 lines
290 B
YAML
17 lines
290 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
|