Don't run stdlib example as part of test set

eg_worker_poolz
Tyler Goodlet 2021-02-21 15:41:21 -05:00
parent 5ffd2d2ab3
commit a93321e48e
2 changed files with 3 additions and 1 deletions

View File

@ -83,8 +83,10 @@ def run_example_in_subproc(loglevel, testdir, arb_addr):
[(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 if '__' not in f
and f[0] != '_'
and 'debugging' not in p[0] and 'debugging' not in p[0]
] ],
ids=lambda t: t[1],
) )
def test_example(run_example_in_subproc, example_script): def test_example(run_example_in_subproc, example_script):
"""Load and run scripts from this repo's ``examples/`` dir as a user """Load and run scripts from this repo's ``examples/`` dir as a user