From: Eli Bendersky Date: Sat, 17 Dec 2011 12:36:39 +0000 (+0200) Subject: update unittest runner X-Git-Tag: v0.10~23 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9577ad900eace3bd54db4984e4bf324e3d5096dc;p=pyelftools.git update unittest runner --- diff --git a/test/run_all_unittests.py b/test/run_all_unittests.py index 555b0d2..54ad5f0 100755 --- a/test/run_all_unittests.py +++ b/test/run_all_unittests.py @@ -12,9 +12,9 @@ from unittest import TestLoader, TextTestRunner if __name__ == '__main__': try: - tests = TestLoader().discover('tests', 'test*.py', 'tests') + tests = TestLoader().discover('test', 'test*.py', 'test') TextTestRunner().run(tests) except ImportError as err: print err - print '!! Please execute from the root directory of pyelfutils' + print '!! Please execute from the root directory of pyelftools'