Fixed pipeline
ci/woodpecker/manual/e2e-smoke-jetson Pipeline was successful

This commit is contained in:
Roman Meshko
2026-06-07 15:27:17 +03:00
parent fce289cad9
commit 42f9e022cb
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -46,6 +46,10 @@ steps:
E2E_LOG_TAIL=300 \ E2E_LOG_TAIL=300 \
bash run_test.sh tests/test_health_engine.py::TestHealthEngineStep03Warmed -rs bash run_test.sh tests/test_health_engine.py::TestHealthEngineStep03Warmed -rs
if [ ! -f results/report.csv ]; then
echo "ERROR: results/report.csv is missing; cannot verify Jetson conversion warm-up result"
exit 1
fi
if grep -qi 'skipped' results/report.csv; then if grep -qi 'skipped' results/report.csv; then
echo "ERROR: Jetson conversion warm-up tests were skipped; no engine was produced" echo "ERROR: Jetson conversion warm-up tests were skipped; no engine was produced"
cat results/report.csv cat results/report.csv
+1 -1
View File
@@ -73,7 +73,7 @@ def video_events(warm_engine, http_client, auth_headers):
"X-Channel-Id": channel_id, "X-Channel-Id": channel_id,
"X-Filename": "video_test01.mp4", "X-Filename": "video_test01.mp4",
"X-Config": json.dumps( "X-Config": json.dumps(
{"model_batch_size": 1, "frame_period_recognition": 100} {"model_batch_size": 1, "frame_period_recognition": 25}
), ),
"Content-Type": "application/octet-stream", "Content-Type": "application/octet-stream",
}, },