We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d80a80 commit b375b06Copy full SHA for b375b06
test/unit/test_configmanager.py
@@ -688,6 +688,10 @@ def test_error_config_file_writable_by_group(tmp_path):
688
):
689
c1["b"]
690
691
+ # file permissions check can be skipped with unsafe_skip_file_permissions_check flag
692
+ c1.read_config(skip_file_permissions_check=True)
693
+ assert c1["b"] is True
694
+
695
696
@pytest.mark.skipif(IS_WINDOWS, reason="chmod doesn't work on Windows")
697
def test_skip_warning_config_file_permissions(tmp_path, monkeypatch):
0 commit comments