From 542d4c784068c9bc542b83293bfb1eaac58681d1 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sat, 6 Sep 2025 13:39:08 -0400 Subject: [PATCH] Ignore `examples/trio/` in docs-examples test suite --- tests/test_docs_examples.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_docs_examples.py b/tests/test_docs_examples.py index 6250e0aa..b4cf85eb 100644 --- a/tests/test_docs_examples.py +++ b/tests/test_docs_examples.py @@ -95,6 +95,7 @@ def run_example_in_subproc( and 'integration' not in p[0] and 'advanced_faults' not in p[0] and 'multihost' not in p[0] + and 'trio' not in p[0] ) ], ids=lambda t: t[1],