aboutsummaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorJan Gelety <jgelety@cisco.com>2020-03-26 01:17:56 +0100
committerJan Gelety <jgelety@cisco.com>2020-03-27 08:47:11 +0000
commit418f9f40c9d3e9620ccd2c47b82de56ea17dc2ff (patch)
tree619c79d36f6d0f96411ed35429129df695d3e01e /resources
parent60a267a638ae91862cda5b425d84d059874d8023 (diff)
FIX: use python3 for csit-docs-merge jobs
Change-Id: Ib29201f63fb8bfcc04f879b13407a85bda55827f Signed-off-by: Jan Gelety <jgelety@cisco.com> (cherry picked from commit f6a656f36801b101dad8f6f3e66bf3ba7744e924)
Diffstat (limited to 'resources')
-rwxr-xr-xresources/tools/doc_gen/run_doc.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/tools/doc_gen/run_doc.sh b/resources/tools/doc_gen/run_doc.sh
index 36535df031..d50c5b852d 100755
--- a/resources/tools/doc_gen/run_doc.sh
+++ b/resources/tools/doc_gen/run_doc.sh
@@ -28,16 +28,16 @@ rsync -a --include '*/' --include '*.robot' --exclude '*' ../../../resources/lib
rsync -a --include '*/' --include '*.robot' --exclude '*' ../../../tests/ ${WORKING_DIR}/tests/
# Create virtual environment:
-virtualenv ${WORKING_DIR}/env
+virtualenv --python=$(which python3) ${WORKING_DIR}/env
. ${WORKING_DIR}/env/bin/activate
# Install CSIT requirements:
-pip install -r ../../../requirements.txt
+pip3 install --upgrade -r ../../../requirements.txt
export PYTHONPATH=`pwd`
# Generate rst files:
-python gen_rst.py
+python3 gen_rst.py
# Remove all rst files from ./${WORKING_DIR}/env directory - we do not need them
find ./${WORKING_DIR}/env -type f -name '*.rst' | xargs rm -f