2024-12-13 11:59:48 +01:00
|
|
|
Index: pyOpenSSL-24.1.0/tests/test_ssl.py
|
2024-05-03 22:00:38 +02:00
|
|
|
===================================================================
|
2024-12-13 11:59:48 +01:00
|
|
|
--- pyOpenSSL-24.1.0.orig/tests/test_ssl.py
|
|
|
|
+++ pyOpenSSL-24.1.0/tests/test_ssl.py
|
|
|
|
@@ -1249,6 +1249,7 @@ class TestContext:
|
2024-05-03 22:00:38 +02:00
|
|
|
reason="set_default_verify_paths appears not to work on Windows. "
|
|
|
|
"See LP#404343 and LP#404344.",
|
|
|
|
)
|
|
|
|
+ @pytest.mark.network
|
|
|
|
def test_set_default_verify_paths(self):
|
|
|
|
"""
|
|
|
|
`Context.set_default_verify_paths` causes the platform-specific CA
|
2024-12-13 11:59:48 +01:00
|
|
|
Index: pyOpenSSL-24.1.0/setup.cfg
|
2024-05-03 22:00:38 +02:00
|
|
|
===================================================================
|
2024-12-13 11:59:48 +01:00
|
|
|
--- pyOpenSSL-24.1.0.orig/setup.cfg
|
|
|
|
+++ pyOpenSSL-24.1.0/setup.cfg
|
2024-05-03 22:00:38 +02:00
|
|
|
@@ -11,4 +11,3 @@ doc_files = doc/_build/html
|
|
|
|
[egg_info]
|
|
|
|
tag_build =
|
|
|
|
tag_date = 0
|
|
|
|
-
|
2024-12-13 11:59:48 +01:00
|
|
|
Index: pyOpenSSL-24.1.0/pyproject.toml
|
2024-05-03 22:00:38 +02:00
|
|
|
===================================================================
|
2024-12-13 11:59:48 +01:00
|
|
|
--- pyOpenSSL-24.1.0.orig/pyproject.toml
|
|
|
|
+++ pyOpenSSL-24.1.0/pyproject.toml
|
2024-05-03 22:00:38 +02:00
|
|
|
@@ -42,6 +42,9 @@ ignore_missing_imports = true
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
addopts = "-r s --strict-markers"
|
|
|
|
testpaths = ["tests"]
|
|
|
|
+markers = [
|
|
|
|
+ "network: test case requires network connection",
|
|
|
|
+]
|
|
|
|
|
|
|
|
[tool.ruff]
|
2024-12-13 11:59:48 +01:00
|
|
|
lint.select = ['E', 'F', 'I', 'W', 'UP', 'RUF']
|