- Update to 1.0.9 * Resolve https://github.com/advisories/GHSA-vqfr-h8mv-ghfj with h11 dependency update. (#1008) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-httpcore?expand=0&rev=41
22 lines
806 B
Diff
22 lines
806 B
Diff
---
|
|
pyproject.toml | 8 +++++++-
|
|
1 file changed, 7 insertions(+), 1 deletion(-)
|
|
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -86,7 +86,13 @@ ignore_missing_imports = true
|
|
[tool.pytest.ini_options]
|
|
addopts = ["-rxXs", "--strict-config", "--strict-markers"]
|
|
markers = ["copied_from(source, changes=None): mark test as copied from somewhere else, along with a description of changes made to accodomate e.g. our test setup"]
|
|
-filterwarnings = ["error"]
|
|
+filterwarnings = [
|
|
+ "error",
|
|
+ "ignore:trio.MultiError is deprecated",
|
|
+ "ignore:unclosed <(socket.socket|ssl.SSLSocket) .*:ResourceWarning",
|
|
+ "ignore:ssl.wrap_socket() is deprecated, use SSLContext.wrap_socket():DeprecationWarning",
|
|
+ "ignore:ssl.PROTOCOL_TLS is deprecated:DeprecationWarning"
|
|
+]
|
|
|
|
[tool.coverage.run]
|
|
omit = [
|