python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
pytest mark parametrization with dependency on each other
I'm using pytest for unittests and I would like to parametrize the tests.
I know I can use @pytest.mark.parametrize at class level and at method level.
@pytest.mark.parametrize("param1", [1,...
avans
Votes: 0
Answers: 1
pytest: use fixture with pandas dataframe for parametrization
I have a fixture, which returns a pd.DataFrame. I need to insert the individual columns (pd.Series) into a unit test and I would like to use parametrize.
Here's a toy example without parametrize. Ever...
Andi
Votes: 0
Answers: 1