Merge pull request #3043 from awbdallas/parameterize_documentation_fix

Parameterize documentation fix
This commit is contained in:
Ronny Pfannschmidt 2017-12-18 17:48:41 +01:00 committed by GitHub
commit 2f8427bb4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

1
changelog/3001.doc Normal file
View File

@ -0,0 +1 @@
Add clarifying note about behavior of multiple parametrized arguments

View File

@ -123,8 +123,8 @@ To get all combinations of multiple parametrized arguments you can stack
def test_foo(x, y):
pass
This will run the test with the arguments set to ``x=0/y=2``, ``x=0/y=3``, ``x=1/y=2`` and
``x=1/y=3``.
This will run the test with the arguments set to ``x=0/y=2``,``x=1/y=2``,
``x=0/y=3``, and ``x=1/y=3`` exhausting parameters in the order of the decorators.
.. _`pytest_generate_tests`: