diff options
author | Florian Bruhin <git@the-compiler.org> | 2016-03-15 22:46:49 +0100 |
---|---|---|
committer | Florian Bruhin <git@the-compiler.org> | 2016-03-15 22:46:49 +0100 |
commit | f1ec6e1e004c5affdb4ba1a00607f01322338e2e (patch) | |
tree | a3f144d38f3409a4bd4a33c416600d8f4c9a88e5 /scripts | |
parent | 07d31634c69686abb5c5055ca9b6ec2ddc92e68c (diff) | |
download | qutebrowser-f1ec6e1e004c5affdb4ba1a00607f01322338e2e.tar.gz qutebrowser-f1ec6e1e004c5affdb4ba1a00607f01322338e2e.zip |
Check docs on Travis
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/dev/ci/install.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/dev/ci/install.py b/scripts/dev/ci/install.py index 7130305c5..4f08ea502 100644 --- a/scripts/dev/ci/install.py +++ b/scripts/dev/ci/install.py @@ -43,7 +43,7 @@ except ImportError: TESTENV = os.environ.get('TESTENV', None) TRAVIS_OS = os.environ.get('TRAVIS_OS_NAME', None) INSTALL_PYQT = TESTENV in ('py34', 'py35', 'py34-cov', 'py35-cov', - 'unittests-nodisp', 'vulture', 'pylint') + 'unittests-nodisp', 'vulture', 'pylint', 'docs') XVFB = TRAVIS_OS == 'linux' and TESTENV == 'py34' pip_packages = ['tox'] if TESTENV is not None and TESTENV.endswith('-cov'): @@ -128,6 +128,8 @@ elif TRAVIS_OS == 'linux': pkgs += ['python3-pyqt5', 'python3-pyqt5.qtwebkit'] if TESTENV == 'eslint': pkgs += ['npm', 'nodejs', 'nodejs-legacy'] + if TESTENV == 'docs': + pkgs += ['asciidoc'] if pkgs: fix_sources_list() |