Skip to content

Commit 4958254

Browse files
committed
Print python packages version used when e2e test fails
1 parent 24202d6 commit 4958254

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.prow/scripts/test-end-to-end-batch.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,9 @@ if [[ ${TEST_EXIT_CODE} != 0 ]]; then
255255
echo "[DEBUG] Printing logs"
256256
ls -ltrh /var/log/feast*
257257
cat /var/log/feast-serving-warehouse.log /var/log/feast-core.log
258+
259+
echo "[DEBUG] Printing Python packages list"
260+
pip list
258261
fi
259262

260263
cd ${ORIGINAL_DIR}

.prow/scripts/test-end-to-end.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,9 @@ if [[ ${TEST_EXIT_CODE} != 0 ]]; then
229229
echo "[DEBUG] Printing logs"
230230
ls -ltrh /var/log/feast*
231231
cat /var/log/feast-serving-online.log /var/log/feast-core.log
232+
233+
echo "[DEBUG] Printing Python packages list"
234+
pip list
232235
fi
233236

234237
cd ${ORIGINAL_DIR}

0 commit comments

Comments
 (0)