summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2018-04-01 00:04:15 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2018-04-01 00:04:15 +0200
commit1f0c2c0a0d2c76d0b2d351013bb14be092af45a6 (patch)
tree432d8d63e754a077d7f3b073b6b7d0c1107033bb /.gitlab-ci
parentb201097a42bc35de39a000b566f88f49ba2af172 (diff)
downloadpygobject-1f0c2c0a0d2c76d0b2d351013bb14be092af45a6.tar.gz
gitlab-ci: install all test dependencies under PyPy
pytest-faulthandler was failing but this is now fixed upstream: https://github.com/pytest-dev/pytest-faulthandler/pull/29
Diffstat (limited to '.gitlab-ci')
-rwxr-xr-x.gitlab-ci/test-docker.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/.gitlab-ci/test-docker.sh b/.gitlab-ci/test-docker.sh
index 7cefec8a..6f6ea65f 100755
--- a/.gitlab-ci/test-docker.sh
+++ b/.gitlab-ci/test-docker.sh
@@ -22,12 +22,11 @@ mkdir -p "${COV_DIR}"
if [[ "${PYIMPL}" == "PyPy" ]]; then
# https://bitbucket.org/pypy/pypy/issues/2776
export MALLOC_CHECK_=
- python -m pip install pycairo pytest
-else
- python -m pip install git+https://github.com/pygobject/pycairo.git
- python -m pip install flake8 pytest pytest-faulthandler coverage
fi;
+python -m pip install git+https://github.com/pygobject/pycairo.git
+python -m pip install flake8 pytest pytest-faulthandler coverage
+
if [[ "${PYIMPL}" == "PyPy" ]]; then
python setup.py build_tests
exit 0;