79122403

Date: 2024-10-24 14:31:35
Score: 1
Natty:
Report link

Fixtures follow these rules to determine the execution order:

When fixture A depends on fixture B: B is always set up before A and torn down after A. Non-automatic fixtures are executed lazily, only when the test/hook needs them. Test-scoped fixtures are torn down after each test, while worker-scoped fixtures are only torn down when the worker process executing tests is shutdown.

Execution order with fixtures

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Adam Muse