Install os-api-ref without -e

The -e install during testing apparently will not actually replace an
existing os-api-ref with the development one (as experienced with lots
of local testing). Switching to just -U gives the desired results.

Change-Id: I7740c8f6219327bb00646a086afe114a5151b7d5
This commit is contained in:
Sean Dague 2016-09-19 07:34:12 -04:00
parent 89d351ec7e
commit 849eec8916

View File

@ -18,7 +18,7 @@ script_path=/usr/local/jenkins/slave_scripts
cat <<EOF >> tox.ini
[testenv:api-ref-src]
commands =
pip install -U -e $api_ref_dir
pip install -U $api_ref_dir
sphinx-build -W -b html -d api-ref/build/doctrees api-ref/source api-ref/build/html
EOF