Noted, I appreciate the insight!
On Tue, Oct 29, 2024 at 8:56 AM Luca Vizzarro wrote:
>
> On 01/10/2024 21:45, Nicholas Pratte wrote:
> > The code you have here makes sense, and I like the implementation as
> > it removes a lot of fluff in DTSRunner. I know Jurja mentioned in an
> > earlier patch
On 17/09/2024 12:39, Juraj Linkeš wrote:
@@ -229,139 +221,34 @@ def _get_test_suites_with_cases(
+ filtered_test_cases: list[TestCase] = [
+ test_case
+ for test_case in test_suite_spec.test_cases
+ if not test_suite_config.test_cases_nam
On 01/10/2024 21:45, Nicholas Pratte wrote:
The code you have here makes sense, and I like the implementation as
it removes a lot of fluff in DTSRunner. I know Jurja mentioned in an
earlier patch in this series that this functionality intersects with
the capabilities series, but I'm missing a lot
On 01/10/2024 18:12, Dean Marx wrote:
+ filtered_test_cases: list[TestCase] = [
+ test_case
+ for test_case in test_suite_spec.test_cases
+ if not test_suite_config.test_cases_names
+ or test_case.name
The code you have here makes sense, and I like the implementation as
it removes a lot of fluff in DTSRunner. I know Jurja mentioned in an
earlier patch in this series that this functionality intersects with
the capabilities series, but I'm missing a lot of context to
understand that fully. Maybe yo
On Thu, Aug 22, 2024 at 12:40 PM Luca Vizzarro
wrote:
> The introduction of TestSuiteSpec adds auto-discovery of test suites,
> which are also automatically imported. This causes double imports as the
> runner loads the test suites. This changes the behaviour of the runner
> to load the imported
diff --git a/dts/framework/runner.py b/dts/framework/runner.py
@@ -229,139 +221,34 @@ def _get_test_suites_with_cases(
+filtered_test_cases: list[TestCase] = [
+test_case
+for test_case in test_suite_spec.test_cases
+if not test_
7 matches
Mail list logo