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 948e49f commit eccea06Copy full SHA for eccea06
1 file changed
tests/test_apps/test_task_runner_http.py
@@ -17,6 +17,12 @@
17
from runpod.runtimes.task import runner as task_runner
18
from runpod.runtimes.task.runner import Handler
19
20
+# http.server's per-request sockets are collected lazily; the unraisable
21
+# checker flags them as ResourceWarnings non-deterministically
22
+pytestmark = pytest.mark.filterwarnings(
23
+ "ignore::pytest.PytestUnraisableExceptionWarning"
24
+)
25
+
26
TOKEN = "test-token"
27
28
0 commit comments