From 9577ad900eace3bd54db4984e4bf324e3d5096dc Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Sat, 17 Dec 2011 14:36:39 +0200 Subject: [PATCH] update unittest runner --- test/run_all_unittests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' -- 2.30.2