File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed
Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -235,6 +235,15 @@ set +e
235235pytest bq-batch-retrieval.py --junitxml=${LOGS_ARTIFACT_PATH} /python-sdk-test-report.xml
236236TEST_EXIT_CODE=$?
237237
238+ if [[ ${TEST_EXIT_CODE} != 0 ]]; then
239+ echo " [DEBUG] Printing logs"
240+ ls -ltrh /var/log/feast*
241+ cat /var/log/feast-serving-warehouse.log /var/log/feast-core.log
242+
243+ echo " [DEBUG] Printing Python packages list"
244+ pip list
245+ fi
246+
238247cd ${ORIGINAL_DIR}
239248exit ${TEST_EXIT_CODE}
240249
Original file line number Diff line number Diff line change @@ -225,5 +225,14 @@ set +e
225225pytest basic-ingest-redis-serving.py --junitxml=${LOGS_ARTIFACT_PATH} /python-sdk-test-report.xml
226226TEST_EXIT_CODE=$?
227227
228+ if [[ ${TEST_EXIT_CODE} != 0 ]]; then
229+ echo " [DEBUG] Printing logs"
230+ ls -ltrh /var/log/feast*
231+ cat /var/log/feast-serving-online.log /var/log/feast-core.log
232+
233+ echo " [DEBUG] Printing Python packages list"
234+ pip list
235+ fi
236+
228237cd ${ORIGINAL_DIR}
229238exit ${TEST_EXIT_CODE}
Original file line number Diff line number Diff line change 3737 "pandavro==1.5.*" ,
3838 "protobuf>=3.10" ,
3939 "PyYAML==5.1.*" ,
40- "fastavro==0.*" ,
40+ # fastavro 0.22.10 and newer will throw this error for e2e batch test:
41+ # TypeError: Timestamp subtraction must have the same timezones or no timezones
42+ "fastavro==0.22.9" ,
4143 "kafka-python==1.*" ,
4244 "tabulate==0.8.*" ,
4345 "toml==0.10.*" ,
You can’t perform that action at this time.
0 commit comments