From ac4c9f206333df9d338b2773a63a37a4327978ef Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 28 Jan 2018 16:35:14 -0800 Subject: [PATCH] travis: don't test Weather, it hits my API limits too quickly --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e5001d2..e70a6d5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,8 +21,9 @@ env: - SYSDNS_HOST_COMMAND="/usr/bin/unbound-host" TEST_ARGS="" script: - - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then echo "Skipping tests that require secret API keys (Weather, LastFM)"; export SKIP_PLUGINS="--exclude=./Weather --exclude=./LastFM"; fi' - - supybot-test -c --plugins-dir=. $TEST_ARGS $SKIP_PLUGINS + - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then echo "Skipping tests that require secret API keys (Weather, LastFM)"; export SKIP_PLUGINS="--exclude=./LastFM"; fi' + # Don't test Weather, it hits my API limits too quickly + - supybot-test -c --plugins-dir=. $TEST_ARGS $SKIP_PLUGINS --exclude=./Weather notifications: email: false