2024-01-29 21:23:44 +00:00
|
|
|
Index: pyOpenSSL-24.0.0/tests/test_ssl.py
|
2022-09-29 19:34:28 +00:00
|
|
|
===================================================================
|
2024-01-29 21:23:44 +00:00
|
|
|
--- pyOpenSSL-24.0.0.orig/tests/test_ssl.py
|
|
|
|
+++ pyOpenSSL-24.0.0/tests/test_ssl.py
|
|
|
|
@@ -1250,6 +1250,7 @@ class TestContext:
|
2016-05-17 13:40:41 +00:00
|
|
|
reason="set_default_verify_paths appears not to work on Windows. "
|
2020-12-10 10:14:18 +00:00
|
|
|
"See LP#404343 and LP#404344.",
|
2016-05-17 13:40:41 +00:00
|
|
|
)
|
|
|
|
+ @pytest.mark.network
|
|
|
|
def test_set_default_verify_paths(self):
|
|
|
|
"""
|
2017-05-01 15:14:02 +00:00
|
|
|
`Context.set_default_verify_paths` causes the platform-specific CA
|
2024-01-29 21:23:44 +00:00
|
|
|
Index: pyOpenSSL-24.0.0/setup.cfg
|
2022-09-29 19:34:28 +00:00
|
|
|
===================================================================
|
2024-01-29 21:23:44 +00:00
|
|
|
--- pyOpenSSL-24.0.0.orig/setup.cfg
|
|
|
|
+++ pyOpenSSL-24.0.0/setup.cfg
|
|
|
|
@@ -11,4 +11,3 @@ doc_files = doc/_build/html
|
2020-12-11 17:24:47 +00:00
|
|
|
[egg_info]
|
|
|
|
tag_build =
|
|
|
|
tag_date = 0
|
|
|
|
-
|
2024-01-29 21:23:44 +00:00
|
|
|
Index: pyOpenSSL-24.0.0/pyproject.toml
|
|
|
|
===================================================================
|
|
|
|
--- pyOpenSSL-24.0.0.orig/pyproject.toml
|
|
|
|
+++ pyOpenSSL-24.0.0/pyproject.toml
|
|
|
|
@@ -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]
|
|
|
|
select = ['E', 'F', 'I', 'W', 'UP', 'RUF']
|