Testing Fixtures Module
Provides fixtures to be available for all test cases.
- testing.fixtures.no_run()[source]
Disable
exhale.deploy.explode()using a class-levelpytestfixture.The fixture will temporarily assign
lambda: Nonetodeploy.explode, restoring the original function after the test case has completed. A class-scoped fixture is used so that this fixture is generated before others.Search for
def getfixtureclosureon this page.