X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fdoc_gen%2Frun_doc.sh;h=d50c5b852d9525fdeb6a49c7ff4f9add83800a08;hb=9377c956a86e42727039d9dab8879c10c9399f4c;hp=ca955cc6c44cda54e4563ccab6919e002ec5f797;hpb=bc2036f4ce9b8aa705161ee1c8566b134fc6570c;p=csit.git diff --git a/resources/tools/doc_gen/run_doc.sh b/resources/tools/doc_gen/run_doc.sh index ca955cc6c4..d50c5b852d 100755 --- a/resources/tools/doc_gen/run_doc.sh +++ b/resources/tools/doc_gen/run_doc.sh @@ -28,18 +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 -# Install Sphinx: -pip install -r ${WORKING_DIR}/requirements.txt +pip3 install --upgrade -r ../../../requirements.txt export PYTHONPATH=`pwd` # Generate rst files: -./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