We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9e20c4 commit 499aaa9Copy full SHA for 499aaa9
1 file changed
testing/test_assertion.py
@@ -84,6 +84,12 @@ def test_get_unsupported_type_error(self):
84
with pytest.raises(KeyError):
85
config.get_verbosity("--- NOT A VERBOSITY LEVEL ---")
86
87
+ def test_getini_unsupported_error(self):
88
+ config = mock_config()
89
+
90
+ with pytest.raises(KeyError, match="Not mocked out: --- NOT AN INI ---"):
91
+ config.getini("--- NOT AN INI ---")
92
93
94
class TestImportHookInstallation:
95
@pytest.mark.parametrize("initial_conftest", [True, False])
0 commit comments