From de85e57d00a5cfff874e8f09af29682c689a7a04 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Mon, 15 Jan 2018 13:30:54 +0000 Subject: [PATCH] Install all deps in CI test job --- .ci/test_template.sh | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.ci/test_template.sh b/.ci/test_template.sh index c77a742aa..f00877793 100644 --- a/.ci/test_template.sh +++ b/.ci/test_template.sh @@ -14,14 +14,9 @@ fi; source /test.venv/bin/activate -# All other deps can be installed as normal. -# We install test dependenciesd through pip, -# because if we let setuptools do it, it -# will build/install everything from source, -# rather than using wheels. pip install -r requirements.txt -pip install sphinx sphinx-rtd-theme -pip install pytest pytest-cov pytest-html pytest-runner mock coverage +pip install -r requirements-extra.txt +pip install -r requirements-dev.txt # style stage if [ "$TEST_STYLE"x != "x" ]; then pip install pylint flake8; fi; -- GitLab