forked from goodboy/tractor
Don't run stdlib example as part of test set
parent
5ffd2d2ab3
commit
a93321e48e
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue