diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6972d55b1c77ced673f204385f10562ab19a67b3..2da4842a97368d6b1c3f1fffa71724949ef5d059 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -57,7 +57,6 @@ check for dependencies installed: build documentation: stage: test script: - - pip3 install sympy - make -C doc realclean; make -C doc html SPHINXOPTS='-A website_deploy=True -n -W' REFNAME="${CI_COMMIT_TAG:-$CI_COMMIT_SHA}" SOURCE_URL="$CI_PROJECT_URL"/blob artifacts: paths: @@ -68,7 +67,6 @@ build documentation: run tests: stage: test script: - - pip3 install sympy - py.test --cov=kwant --cov-report term --cov-report html --flakes kwant artifacts: paths: @@ -78,7 +76,6 @@ run tests: check for broken links in doc: stage: test script: - - pip3 install sympy - make -C doc linkcheck allow_failure: true