Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-27 07:28:14

0001 """Shared pytest fixtures for integration tests."""
0002 
0003 import pytest
0004 
0005 
0006 @pytest.fixture
0007 def sample_integration_fixture():
0008     """Example fixture for integration tests."""
0009     # Setup code here
0010     yield "integration_test_data"
0011     # Teardown code here