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:
authorStephen Finucane <stephen@that.guru>2017-12-24 18:24:10 +0300
committerStephen Finucane <stephen@that.guru>2017-12-29 16:01:59 +0300
commit4fd217ce88c596093887895197ccf75a7e99368c (patch)
tree2ef4febca4f769f4506ea811883c68a891b6bf3b /.circleci
parent0998bd533097bd3d0746871f3e1f713bff012315 (diff)
circleci: Install packages ourselves
Start installing Python dependencies and Sphinx itself as part of the CircleCI job rather than expecting it to be done in the Docker container. This ensures we will use the version of the packages for a given commit. This is the other half of sphinx-doc/docker-ci#1. Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 1bbcb4884..f4d4415f1 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -6,4 +6,6 @@ jobs:
working_directory: /sphinx
steps:
- checkout
+ - run: /python3.4/bin/pip install -U pip setuptools
+ - run: /python3.4/bin/pip install -U .[test,websupport]
- run: make test PYTHON=/python3.4/bin/python