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
8 changes: 4 additions & 4 deletions backends/arm/test/test_arm_baremetal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ test_pytest_ops() { # Test ops and other things
backends/arm/scripts/build_executorch.sh

# Run arm baremetal pytest tests without FVP
pytest --verbose --color=yes --numprocesses=auto backends/arm/test/ --ignore=backends/arm/test/models
pytest --verbose --color=yes --numprocesses=auto --durations=10 backends/arm/test/ --ignore=backends/arm/test/models
echo "${TEST_SUITE_NAME}: PASS"
}

Expand All @@ -88,7 +88,7 @@ test_pytest_models() { # Test ops and other things
backends/arm/scripts/build_executorch.sh

# Run arm baremetal pytest tests without FVP
pytest --verbose --color=yes backends/arm/test/models
pytest --verbose --color=yes --durations=0 backends/arm/test/models
echo "${TEST_SUITE_NAME}: PASS"
}

Expand All @@ -109,7 +109,7 @@ test_pytest_ops_ethosu_fvp() { # Same as test_pytest but also sometime verify us
backends/arm/test/setup_testing.sh

# Run arm baremetal pytest tests with FVP
pytest --verbose --color=yes --numprocesses=auto backends/arm/test/ --ignore=backends/arm/test/models
pytest --verbose --color=yes --numprocesses=auto --durations=10 backends/arm/test/ --ignore=backends/arm/test/models
echo "${TEST_SUITE_NAME}: PASS"
}

Expand All @@ -123,7 +123,7 @@ test_pytest_models_ethosu_fvp() { # Same as test_pytest but also sometime verify
backends/arm/test/setup_testing.sh

# Run arm baremetal pytest tests with FVP
pytest --verbose --color=yes backends/arm/test/models
pytest --verbose --color=yes --durations=0 backends/arm/test/models
echo "${TEST_SUITE_NAME}: PASS"
}

Expand Down
Loading