Print Python version and specific environment in ci_build.sh

This is useful to determine exactly which packages are installed in the ci_sanity environment.

PiperOrigin-RevId: 373029910
Change-Id: I2912a02f5eb9a02dcec1765bc68245070a93312d
This commit is contained in:
Austin Anderson 2021-05-10 15:52:29 -07:00 committed by TensorFlower Gardener
parent 3b9add9e3b
commit 99ab0d0c52

View File

@ -126,6 +126,12 @@ do_pylint() {
# Now that we know we have to do work, check if `pylint` is installed
PYLINT_BIN="python3.8 -m pylint"
echo ""
echo "print python version and pip freeze for debugging."
echo ""
python3.8
python3.8 -m pip freeze
echo ""
echo "check whether pylint is available or not."
echo ""