mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
15 lines
440 B
YAML
15 lines
440 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: sphinxdoc/docker-ci
|
|
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
|
|
- store_test_results:
|
|
path: test-reports
|