From df5ca628c462f105ec7fccf97ec0a7df84686631 Mon Sep 17 00:00:00 2001 From: Erik Lundell Date: Mon, 11 Aug 2025 16:08:58 +0200 Subject: [PATCH] WIP: Run pytest model tests in parallell Signed-off-by: Erik Lundell Change-Id: Ifccccff659e7ce8f747d861e1c61942858bcdd35 --- backends/arm/test/test_arm_baremetal.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backends/arm/test/test_arm_baremetal.sh b/backends/arm/test/test_arm_baremetal.sh index af3f4bea501..9fd666ab4bb 100755 --- a/backends/arm/test/test_arm_baremetal.sh +++ b/backends/arm/test/test_arm_baremetal.sh @@ -101,7 +101,7 @@ test_pytest_models() { # Test ops and other things source backends/arm/scripts/install_models_for_test.sh # Run arm baremetal pytest tests without FVP - pytest --verbose --color=yes --durations=0 backends/arm/test/models + pytest --verbose --color=yes --numprocesses=auto --durations=0 backends/arm/test/models echo "${TEST_SUITE_NAME}: PASS" } @@ -141,7 +141,7 @@ test_pytest_models_ethosu_fvp() { # Same as test_pytest but also sometime verify source backends/arm/scripts/install_models_for_test.sh # Run arm baremetal pytest tests with FVP - pytest --verbose --color=yes --durations=0 backends/arm/test/models + pytest --verbose --color=yes --numprocesses=auto --durations=0 backends/arm/test/models echo "${TEST_SUITE_NAME}: PASS" }