File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 1+ """Test configuration for pytest.
2+
3+ This module imports fixtures from other modules to make them available
4+ to all tests.
5+ """
6+
7+ from __future__ import annotations
8+
9+ # Import fixtures from example_configs.py
10+ from tests .fixtures .example_configs import (
11+ complex_yaml_config ,
12+ config_with_includes ,
13+ json_config ,
14+ simple_yaml_config ,
15+ )
16+
17+ # Re-export fixtures to make them available to all tests
18+ __all__ = [
19+ "complex_yaml_config" ,
20+ "config_with_includes" ,
21+ "json_config" ,
22+ "simple_yaml_config" ,
23+ ]
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ def json_config(tmp_path: t.Any) -> t.Any:
135135
136136
137137@pytest .fixture
138- def config_with_includes (tmp_path : t .Any ) -> t . Tuple [t .Any , t .Any ]:
138+ def config_with_includes (tmp_path : t .Any ) -> tuple [t .Any , t .Any ]:
139139 """Create a configuration file with includes.
140140
141141 Parameters
You can’t perform that action at this time.
0 commit comments