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: 9ded24cffc2721b33f69eb7b26c1699cf4752edc (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.6/bin/pip install -U pip setuptools
      - run: /python3.6/bin/pip install -U .[test]
      - run: mkdir -p test-reports/pytest
      - run: make test PYTHON=/python3.6/bin/python TEST="--junitxml=test-reports/pytest/results.xml -vv"
      - store_test_results:
          path: test-reports