From b08a37fe9c3ebb73ddab3b95fa33db5db6f2e274 Mon Sep 17 00:00:00 2001 From: Eeshan Garg Date: Tue, 18 Jul 2017 01:52:58 -0230 Subject: [PATCH] travis: Update Travis config to install and test all packages. --- .travis.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1138744..95e1f6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,11 @@ language: python python: - "2.7" install: - - pip install . - - bots_api/provision.py + - pip install pycodestyle==2.3.1 + - pip install ./zulip + - pip install ./zulip_bots + - pip install ./zulip_botserver script: - tools/lint - - bots_api/test-bots + - python -m unittest discover -v zulip_botserver + - tools/test-bots