Files
sphinx/.circleci/config.yml

17 lines
493 B
YAML
Raw Normal View History

2017-05-10 00:42:06 +09:00
version: 2
jobs:
build:
docker:
- image: sphinxdoc/docker-ci
2018-09-09 19:50:49 +09:00
environment:
DO_EPUBCHECK: 1
2017-05-10 00:42:06 +09:00
working_directory: /sphinx
steps:
- checkout
2019-03-09 17:57:20 +09:00
- run: /python3.6/bin/pip install -U pip setuptools
- run: /python3.6/bin/pip install -U .[test]
- run: mkdir -p test-reports/pytest
2020-07-04 20:46:01 +09:00
- run: make test PYTHON=/python3.6/bin/python TEST="--junitxml=test-reports/pytest/results.xml -vv"
- store_test_results:
path: test-reports