From d8beb047ebf6843fec54b3acc0bceb2d5a901def Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 2 Aug 2016 10:28:03 +0200 Subject: [PATCH] travis.yml: Install 'irctest' at the install step. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 47f6bcc31..aa392130c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,13 +15,13 @@ env: - WITH_OPT_DEPS=true - WITH_OPT_DEPS=false install: - - if [ "$WITH_OPT_DEPS" = "true" ] ; then pip install -vr requirements.txt; fi + - if [ "$WITH_OPT_DEPS" = "true" ] ; then pip install -vr requirements.txt; fi + - if [[ "$TRAVIS_PYTHON_VERSION" =~ ^3\.[4-9] ]] ; then pip install -v git+https://github.com/ProgVal/irctest.git; fi # command to run tests, e.g. python setup.py test script: - echo $TRAVIS_PYTHON_VERSION - python setup.py install - supybot-test test -v --plugins-dir=./build/lib*/supybot/plugins/ --no-network --disable-multiprocessing --exclude=./build/lib*/supybot/plugins/Scheduler --exclude=./build/lib*/supybot/plugins/Filter - - if [[ "$TRAVIS_PYTHON_VERSION" =~ ^3\.[4-9] ]] ; then pip install -v git+https://github.com/ProgVal/irctest.git; fi - if [[ "$TRAVIS_PYTHON_VERSION" =~ ^3\.[4-9] ]] ; then python -m irctest irctest.controllers.limnoria; fi notifications: email: false