From 3ef5fb30a0b9fd5d3496d0eeafbed1a3935ae388 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 23 May 2021 02:21:26 +0900 Subject: [PATCH] CircleCI: Test with python 3.8 From now on, Sphinx will be tested with python3.8 and Ubuntu-20.04 in CircleCI. --- .circleci/config.yml | 6 +++--- 1 file 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