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

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2021-05-22 20:21:26 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2021-05-22 20:21:32 +0300
commit3ef5fb30a0b9fd5d3496d0eeafbed1a3935ae388 (patch)
treec4e8def86fe753dc33046e323c72ecc02973d1d4 /.circleci
parenta7ec37cae1f2333b682446edcb0de5c16db8a980 (diff)
CircleCI: Test with python 3.8
From now on, Sphinx will be tested with python3.8 and Ubuntu-20.04 in CircleCI.
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 9ded24cff..841260c69 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -8,9 +8,9 @@ jobs:
working_directory: /sphinx
steps:
- checkout
- - run: /python3.6/bin/pip install -U pip setuptools
- - run: /python3.6/bin/pip install -U .[test]
+ - 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.6/bin/python TEST="--junitxml=test-reports/pytest/results.xml -vv"
+ - run: make test PYTHON=/python3.8/bin/python TEST="--junitxml=test-reports/pytest/results.xml -vv"
- store_test_results:
path: test-reports