From 2a61aa099b822df540965a1584401f78f1808da8 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 26 Jun 2022 15:26:18 -0400 Subject: [PATCH] Move pydantic-click hang example to new dir, skip in test suite --- examples/{ => integration}/open_context_and_sleep.py | 0 tests/test_docs_examples.py | 7 +++++-- 2 files changed, 5 insertions(+), 2 deletions(-) rename examples/{ => integration}/open_context_and_sleep.py (100%) diff --git a/examples/open_context_and_sleep.py b/examples/integration/open_context_and_sleep.py similarity index 100% rename from examples/open_context_and_sleep.py rename to examples/integration/open_context_and_sleep.py diff --git a/tests/test_docs_examples.py b/tests/test_docs_examples.py index af17ff1..e1d7867 100644 --- a/tests/test_docs_examples.py +++ b/tests/test_docs_examples.py @@ -81,11 +81,14 @@ def run_example_in_subproc(loglevel, testdir, arb_addr): 'example_script', # walk yields: (dirpath, dirnames, filenames) - [(p[0], f) for p in os.walk(examples_dir()) for f in p[2] + [ + (p[0], f) for p in os.walk(examples_dir()) for f in p[2] if '__' not in f and f[0] != '_' - and 'debugging' not in p[0]], + and 'debugging' not in p[0] + and 'integration' not in p[0] + ], ids=lambda t: t[1], )