Skip to content
Snippets Groups Projects
Commit 71a91a06 authored by Nguyen Anh Quynh's avatar Nguyen Anh Quynh
Browse files

regress: print out testcases in regress.py

parent 67bfda82
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,13 @@ if __name__ == '__main__':
__all__ = [ basename(f)[:-3] for f in modules if isfile(f)]
suite = unittest.TestSuite()
count = 1
for module in __all__:
if module != "regress":
print("#%u - Going to test %s" %(count, module))
count += 1
else:
continue
m = __import__(module)
for cl in dir(m):
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment