Skip to content

system_jobs_service_locator

Scope: function | Returns: DependencyContainer

The system_jobs_service_locator fixture bootstraps and sets the global service locator with the system jobs component registrations. Use it in tests that exercise system jobs.

Basic usage

@pytest.mark.usefixtures("system_jobs_service_locator")
def test_system_job_runs():
    ...