Welcome to mirror list, hosted at ThFree Co, Russian Federation.

config.yml « .circleci - github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 841260c699543e22e3becbaf51827f0d7bb3d964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: 2
jobs:
  build:
    docker:
      - image: sphinxdoc/docker-ci
        environment:
          DO_EPUBCHECK: 1
    working_directory: /sphinx
    steps:
      - checkout
      - run: /python3.8/bin/pip install -U pip setuptools
      - run: /python3.8/bin/pip install -U .[test]
      - run: mkdir -p test-reports/pytest
      - run: make test PYTHON=/python3.8/bin/python TEST="--junitxml=test-reports/pytest/results.xml -vv"
      - store_test_results:
          path: test-reports