We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I use parameterized tests like these:
@pytest.mark.parametrize('parameter', parametermap) def test_salt_state_apply(host, parameter): <some test code>
Right now, the tests run each parameter per host:
host0-parameter0 host0-parameter1 host1-parameter0 host1-parameter1
Is there a way to instead have them test each host per parameter?
host0-parameter0 host1-parameter0 host0-parameter1 host1-parameter1
I tried to stack a second parameterized decorator for host, however it would still loop over the "original" hosts passed using --hosts.
host
--hosts
Would appreciate any ideas!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I use parameterized tests like these:
Right now, the tests run each parameter per host:
Is there a way to instead have them test each host per parameter?
I tried to stack a second parameterized decorator for
host
, however it would still loop over the "original" hosts passed using--hosts
.Would appreciate any ideas!
The text was updated successfully, but these errors were encountered: