Skip to content

Commit

Permalink
Merge pull request #4059 from labcodes/documenting-scopes
Browse files Browse the repository at this point in the history
Add possible values for fixture scope to docs
  • Loading branch information
nicoddemus committed Oct 1, 2018
2 parents 5d2d64c + 4dc73bd commit dd59ed3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog/3928.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add possible values for fixture scope to docs.
1 change: 1 addition & 0 deletions doc/en/fixture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ to cause the decorated ``smtp_connection`` fixture function to only be invoked
once per test *module* (the default is to invoke once per test *function*).
Multiple test functions in a test module will thus
each receive the same ``smtp_connection`` fixture instance, thus saving time.
Possible values for ``scope`` are: ``function``, ``class``, ``module``, ``package`` or ``session``.

The next example puts the fixture function into a separate ``conftest.py`` file
so that tests from multiple test modules in the directory can
Expand Down

0 comments on commit dd59ed3

Please sign in to comment.