Merge pull request #6959 from lewisbelcher/patch-1

Update fixture.rst
This commit is contained in:
Ran Benita 2020-03-23 11:49:00 +02:00 committed by GitHub
commit 77e673c248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ Order: Higher-scoped fixtures are instantiated first
Within a function request for features, fixture of higher-scopes (such as ``session``) are instantiated first than
Within a function request for fixtures, those of higher-scopes (such as ``session``) are instantiated before
lower-scoped fixtures (such as ``function`` or ``class``). The relative order of fixtures of same scope follows
the declared order in the test function and honours dependencies between fixtures. Autouse fixtures will be
instantiated before explicitly used fixtures.