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 a488b31 commit d1dd087Copy full SHA for d1dd087
tests/test_cli.py
@@ -345,7 +345,13 @@ def test_cli_with_insecure_option():
345
)
346
347
348
-@pytest.mark.skipif(sys.version_info[:2] == (3, 12), reason="Skipping test for Python 3.12")
+@pytest.mark.skipif(
349
+ sys.version_info[:2] >= (3, 12),
350
+ reason="Skipping test for Python 3.12+ because of "
351
+ "https://github.com/aboutcode-org/python-inspector/issues/212"
352
+ "to avoid error AttributeError: module 'configparser' has no attribute "
353
+ "'SafeConfigParser'. Did you mean: 'RawConfigParser'?",
354
+)
355
@pytest.mark.online
356
def test_cli_with_insecure_option_testpkh():
357
setup_py_file = test_env.get_test_loc("insecure-setup-2/setup.py")
0 commit comments