wolever / parameterized

Parameterized testing with any Python test framework
Other
833 stars 105 forks source link

Fix using parameterized_class with mixins #180

Open eltoder opened 3 weeks ago

eltoder commented 3 weeks ago

Extend the fix for #73 to include inherited methods: copy all test methods from the original class into generated classes and set them to None in the original class. This ensures that the original class does not run by itself.

Fixes #119