Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions backends/arm/test/test_arm_baremetal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I always assumed it would do this automatically after reading worker related messages. but this is good, I didn't realize --dist=no by default.

echo "${TEST_SUITE_NAME}: PASS"
}

Expand Down Expand Up @@ -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"
}

Expand Down
Loading