Commit 27378412 authored by Tom Niget's avatar Tom Niget

Prevent running extension post files

parent 7eb96252
......@@ -116,6 +116,7 @@ signal.signal(signal.SIGINT, sigint_handler)
def run_tests():
tests = sorted(Path('tests').glob('*.py'))
tests = [t for t in tests if ".post." not in t.name]
if args.only:
tests = [p for p in tests if p.stem in args.only]
if args.verbose:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment