From: Peter Mikus Date: Mon, 2 Dec 2019 14:22:16 +0000 (+0000) Subject: FIX: Perpatch PY3 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=9a936616eea7236ca8183f632d01d62109e12b29 FIX: Perpatch PY3 Signed-off-by: Peter Mikus Change-Id: Iae97cf4490fea38f5f03bdaa120ee7ae48b941ab --- diff --git a/resources/libraries/bash/entry/check_crc.sh b/resources/libraries/bash/entry/check_crc.sh index 6c91d28a34..798d29a7f0 100644 --- a/resources/libraries/bash/entry/check_crc.sh +++ b/resources/libraries/bash/entry/check_crc.sh @@ -41,5 +41,5 @@ set_perpatch_vpp_dir || die activate_virtualenv "${VPP_DIR}" || die # TODO: Create bash functions for the following one-liners? make json-api-files || die "Generation of .api.json files failed." -python csit/resources/tools/integrated/check_crc.py +python3 csit/resources/tools/integrated/check_crc.py # RuntimeError causes nonzero return code, to vote -1. diff --git a/resources/libraries/bash/function/per_patch.sh b/resources/libraries/bash/function/per_patch.sh index b5bac78d4a..919789b5f4 100644 --- a/resources/libraries/bash/function/per_patch.sh +++ b/resources/libraries/bash/function/per_patch.sh @@ -109,10 +109,10 @@ function compare_test_results () { cd "${VPP_DIR}" || die "Change directory operation failed." # Reusing CSIT main virtualenv. - pip install -r "${PYTHON_SCRIPTS_DIR}/perpatch_requirements.txt" || { + pip3 install -r "${PYTHON_SCRIPTS_DIR}/perpatch_requirements.txt" || { die "Perpatch Python requirements installation failed." } - python "${PYTHON_SCRIPTS_DIR}/compare_perpatch.py" + python3 "${PYTHON_SCRIPTS_DIR}/compare_perpatch.py" # The exit code determines the vote result. } diff --git a/resources/tools/scripts/perpatch_requirements.txt b/resources/tools/scripts/perpatch_requirements.txt index 225d0d6202..3fca076af2 100644 --- a/resources/tools/scripts/perpatch_requirements.txt +++ b/resources/tools/scripts/perpatch_requirements.txt @@ -13,3 +13,4 @@ # TODO: Convert to use the code from cloned CSIT git, not from pip. jumpavg==0.1.3 +ply==3.11