From 9dcb1375738ae27941383801ec1d57158a9b9551 Mon Sep 17 00:00:00 2001 From: ubaumann Date: Mon, 20 Jan 2025 20:28:47 +0100 Subject: [PATCH] ignore telnetlib DeprecationWarning --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fb030586..fe2a90d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,8 @@ filterwarnings = [ "ignore:Using or importing the ABCs from 'collections':DeprecationWarning:napalm\\.base\\.helpers", "ignore:Using or importing the ABCs from 'collections':DeprecationWarning:jnpr\\.junos\\.factcache", "ignore:NutsYamlFile\\.fspath is deprecated and will be replaced by NutsYamlFile\\.path\\.", - "ignore:.*pkg_resources.*:DeprecationWarning" + "ignore:.*pkg_resources.*:DeprecationWarning", + "ignore:.*telnetlib.*:DeprecationWarning" ] markers = ["nuts_test_ctx: A NutsContext to be used in tests."] norecursedirs = "mock_project"