Historical load_test_config
()
| 868 | |
| 869 | # Historical convenience functions to access config entries |
| 870 | def load_test_config(): # noqa: D103 |
| 871 | """Historical load_test_config""" |
| 872 | warnings.warn( |
| 873 | "Accessing configuration method 'load_test_config' directly from the configuration module is " |
| 874 | "deprecated. Please access the configuration from the 'configuration.conf' object via " |
| 875 | "'conf.load_test_config'", |
| 876 | DeprecationWarning, |
| 877 | stacklevel=2, |
| 878 | ) |
| 879 | conf.load_test_config() |
| 880 | |
| 881 | |
| 882 | def get(*args, **kwargs): # noqa: D103 |