Re: [PATCH v3 3/7] dts: filter test suites in executions

2024-02-28 Thread Juraj Linkeš
On Tue, Feb 27, 2024 at 10:22 PM Jeremy Spewock wrote: > > > > + > > +lowercase_suite_to_find = ( > > +f"{self._test_suite_class_prefix}{module_name.replace('_', > > '')}".lower() > > +) > > +for class_name, class_obj in inspect.getmembers(test_suite_module,

Re: [PATCH v3 3/7] dts: filter test suites in executions

2024-02-27 Thread Jeremy Spewock
> + > +lowercase_suite_to_find = ( > +f"{self._test_suite_class_prefix}{module_name.replace('_', > '')}".lower() > +) > +for class_name, class_obj in inspect.getmembers(test_suite_module, > is_test_suite): > +if ( > +class_name.star

[PATCH v3 3/7] dts: filter test suites in executions

2024-02-22 Thread Juraj Linkeš
We're currently filtering which test cases to run after some setup steps, such as DPDK build, have already been taken. This prohibits us to mark the test suites and cases that were supposed to be run as blocked when an earlier setup fails, as that information is not available at that time. To reme