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,
> +
> +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
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
3 matches
Mail list logo