I have a test class with 2 tests. How can I parametrize whole class while having one test parametrized additionally?
I need test_b
executed 1 time for param0
and 2 times for param1
Module threads.py
Class TestThreads
Function test_a[param0]
Function test_b[param0-0]
Function test_a[param1]
Function test_b[param1-0]
Function test_b[param1-1]