Sebastian Aguirre Brachi
Sebastian Aguirre Brachi
@RonnyPfannschmidt can you link to that part of the documentation you mention? Can't find it. Edit: nevermind. http://doc.pytest.org/en/latest/proposals/parametrize_with_fixtures.html
@TvoroG good work. Currently this seems to be failing. Is it possible to support it as well? ``` import pytest @pytest.fixture(params=[1, 2, 3]) def one(request): return str(request.param) @pytest.fixture def two():...
@TvoroG great, thanks for the quick reply. I tested it a little more and here's another contrived example that doesn't work, based on a real use case (where `one` actually...
> Perhaps discussion specific to it should be moved to I was thinking the same thing before posting, but probably the use cases and limitations are useful as well for...