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 <http://test_case.name> in
test_suite_config.test_cases_names
+ ]
Just wondering, what's the plan with the filtered test cases? I'm
assuming they're stored here so we can report which cases were skipped
after runtime?
I believe this behaviour changed in the latest version I've sent. But
the idea is that now we have TestCases as objects instead of strings,
and the purpose of this is to retrieve all the objects from the
user-provided strings.