Skip irctest when optional dependencies are not installed.

This commit is contained in:
Valentin Lorentz 2019-12-26 16:16:58 +01:00
parent ac07b440dc
commit 5348869e4f
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ script:
- echo $TRAVIS_PYTHON_VERSION
- python setup.py install
- supybot-test test -v --plugins-dir=./plugins/ --no-network --disable-multiprocessing
- if [[ "$TRAVIS_PYTHON_VERSION" =~ ^3\.[4-9] ]] ; then python -m irctest irctest.controllers.limnoria; fi
- if [ "$WITH_OPT_DEPS" = "true" ] -a [[ "$TRAVIS_PYTHON_VERSION" =~ ^3\.[4-9] ]] ; then python -m irctest irctest.controllers.limnoria; fi
notifications:
email: false
matrix: