Skip to content

Commit

Permalink
Move pydantic-click hang example to new dir, skip in test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
goodboy committed Jun 26, 2022
1 parent 0b1c1ac commit ab557fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
File renamed without changes.
7 changes: 5 additions & 2 deletions tests/test_docs_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,14 @@ def run(script_code):
'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],
)
Expand Down

0 comments on commit ab557fa

Please sign in to comment.