You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to tun the parameterized_class as in the documentation, but according to the code, its necessary to remove all test_ methods, leaving me with a class with 0 tests
If I try to run a test individualy, I get AttributeError: type object 'TestFoo' has no attribute 'test_foo_one'
If I run the class, no tests are found.
I could use the @parameterized.expand in each test, but I didn't want to duplicate the same line everytime.
What am I missing?
Thanks 👍
The text was updated successfully, but these errors were encountered:
I'm trying to tun the
parameterized_class
as in the documentation, but according to the code, its necessary to remove alltest_
methods, leaving me with a class with 0 testsI have the following;
If I try to run a test individualy, I get
AttributeError: type object 'TestFoo' has no attribute 'test_foo_one'
If I run the class, no tests are found.
I could use the
@parameterized.expand
in each test, but I didn't want to duplicate the same line everytime.What am I missing?
Thanks 👍
The text was updated successfully, but these errors were encountered: