From d28bafeba44d09faf730d31dd8bc786c9577a12c Mon Sep 17 00:00:00 2001 From: Ed Morley Date: Tue, 30 May 2017 22:51:26 +0100 Subject: [PATCH] Add 'bob --help' to the Travis run In lieu of having a test suite, this at least ensures the setup.py `console_scripts` entry is configured correctly, and that basic CLI and arg functionality works. --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index df88886..0f3cb65 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,10 @@ python: - "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