do_regtest: Move to Python3

This commit is contained in:
Ole Schütt 2020-10-18 11:50:38 +02:00 committed by Ole Schütt
parent 0700962ac6
commit d11024a487

View file

@ -1201,7 +1201,7 @@ EOF
if (( n_leaks > 0 )); then
REPORT_SUMMARY+=$(printf "; memleaks: %d" ${n_leaks})
fi
REPORT_SUMMARY+=$(python -c "print('; %.0fmin'%(${full_timing_all}/60.0))")
REPORT_SUMMARY+=$(python3 -c "print('; %.0fmin'%(${full_timing_all}/60.0))")
echo -e "\nSummary: ${REPORT_SUMMARY}"
if ((n_wrong_results > 0)) || ((n_runtime_error > 0)) || ((n_leaks > 0)); then