mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
17 lines
493 B
YAML
17 lines
493 B
YAML
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
|