From e073b79043e9ba8466973b0869686578d325bc03 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Tue, 18 Jun 2024 22:01:39 +0200 Subject: [PATCH] wip --- scripts/ci/run_benchmarks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci/run_benchmarks.sh b/scripts/ci/run_benchmarks.sh index 0a9aee8a3..22719a70f 100755 --- a/scripts/ci/run_benchmarks.sh +++ b/scripts/ci/run_benchmarks.sh @@ -105,10 +105,10 @@ function run_benchmarks_for_folder { for METHOD in route nearest trip table match; do echo "Running e2e benchmark for $METHOD $ALGORITHM" - # python3 $SCRIPTS_FOLDER/scripts/ci/e2e_benchmark.py --host http://localhost:5000 --method $METHOD --iterations 5 --num_requests 1000 --gps_traces_file_path $GPS_TRACES > $RESULTS_FOLDER/e2e_${METHOD}_${ALGORITHM}.bench + python3 $SCRIPTS_FOLDER/scripts/ci/e2e_benchmark.py --host http://localhost:5000 --method $METHOD --iterations 5 --num_requests 1000 --gps_traces_file_path $GPS_TRACES > $RESULTS_FOLDER/e2e_${METHOD}_${ALGORITHM}.bench done - kill -9 $OSRM_ROUTED_PID >/dev/null + kill -9 $OSRM_ROUTED_PID >/dev/null 2>&1 done }