Testing Fixtures Module

Provides fixtures to be available for all test cases.

testing.fixtures.no_run()[source]

Disable exhale.deploy.explode() using a class-level pytest fixture.

The fixture will temporarily assign lambda: None to deploy.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 getfixtureclosure on this page.