Re: [PATCH v3 03/12] dts: add test case decorators

2024-09-05 Thread Jeremy Spewock
On Thu, Sep 5, 2024 at 4:07 AM Juraj Linkeš wrote: > > > > On 26. 8. 2024 18:50, Jeremy Spewock wrote: > > On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš > > wrote: > > > >> class DTSRunner: > >> @@ -232,9 +231,9 @@ def _get_test_suites_with_cases( > >> > >> for test_suite_config in t

Re: [PATCH v3 03/12] dts: add test case decorators

2024-09-05 Thread Juraj Linkeš
On 26. 8. 2024 18:50, Jeremy Spewock wrote: On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: class DTSRunner: @@ -232,9 +231,9 @@ def _get_test_suites_with_cases( for test_suite_config in test_suite_configs: test_suite_class = self._get_test_suite_class(test_

Re: [PATCH v3 03/12] dts: add test case decorators

2024-08-30 Thread Nicholas Pratte
Reviewed-by: Nicholas Pratte On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > > Add decorators for functional and performance test cases. These > decorators add attributes to the decorated test cases. > > With the addition of decorators, we change the test case discovery > mechanism from l

Re: [PATCH v3 03/12] dts: add test case decorators

2024-08-28 Thread Dean Marx
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > Add decorators for functional and performance test cases. These > decorators add attributes to the decorated test cases. > > With the addition of decorators, we change the test case discovery > mechanism from looking at test case names accord

Re: [PATCH v3 03/12] dts: add test case decorators

2024-08-26 Thread Jeremy Spewock
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > class DTSRunner: > @@ -232,9 +231,9 @@ def _get_test_suites_with_cases( > > for test_suite_config in test_suite_configs: > test_suite_class = > self._get_test_suite_class(test_suite_config.test_suite) > -te