Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Run only short doctests on CirlceCI at first
Browse files Browse the repository at this point in the history
  • Loading branch information
saraedum committed May 1, 2018
1 parent 7514796 commit f574976
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ jobs:
. .ci/pull-dockerhub.sh sagemath
# Run doctests. Note that the limits on CircleCI are not sufficient
# to run --long doctests as of early 2018.
.ci/test-doctest.sh "$DOCKER_IMAGE"
.ci/test-doctest.sh "$DOCKER_IMAGE" --new
# TODO: Enable this once we have https://trac.sagemath.org/ticket/25270
# .ci/test-doctest.sh "$DOCKER_IMAGE" --short
doctest-long:
machine: true
Expand All @@ -65,22 +65,20 @@ jobs:
. .ci/pull-dockerhub.sh sagemath
# Run doctests. Note that the limits on CircleCI are not sufficient
# to run --long doctests as of early 2018.
.ci/test-doctest.sh "$DOCKER_IMAGE"
.ci/test-doctest.sh "$DOCKER_IMAGE" --long
workflows:
version: 2
build-check-release-test:
jobs:
- build-check-release
- doctest:
- doctest-new:
requires:
- build-check-release
- doctest-long-approval:
type: approval
requires:
- doctest
- doctest-new
- doctest-long:
requires:
- doctest-long-approval

0 comments on commit f574976

Please sign in to comment.