File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 31
31
def pytest_configure (config ):
32
32
pytest ._test_options = {} # type: ignore[attr-defined]
33
33
pytest ._test_options ["corstone_fvp" ] = False # type: ignore[attr-defined]
34
- if (
35
- getattr (config .option , "arm_run_corestoneFVP" , False )
36
- and config .option .arm_run_corstoneFVP
37
- ):
34
+
35
+ if config .option .arm_run_corstoneFVP :
38
36
corstone300_exists = shutil .which ("FVP_Corstone_SSE-300_Ethos-U55" )
39
37
corstone320_exists = shutil .which ("FVP_Corstone_SSE-320" )
40
38
if not (corstone300_exists and corstone320_exists ):
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ def test_w2l_u55_BI(self):
131
131
132
132
@pytest .mark .slow
133
133
@pytest .mark .corstone_fvp
134
- @conftest .expectedFailureOnFVP # TODO: MLBEDSW-10093
134
+ @conftest .expectedFailureOnFVP # TODO: MLETORCH-761
135
135
def test_w2l_u85_BI (self ):
136
136
tester = self ._test_w2l_ethos_BI_pipeline (
137
137
self .w2l ,
You can’t perform that action at this time.
0 commit comments