From: Klement Sekera Date: Tue, 29 Oct 2019 11:03:47 +0000 (+0000) Subject: tests: fix TEST= filtering for python3 X-Git-Tag: v20.05-rc0~514 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F59%2F23059%2F2;p=vpp.git tests: fix TEST= filtering for python3 Type: fix Change-Id: Iceb60e8a507120434cfc68758476ff5351b05f58 Signed-off-by: Klement Sekera --- diff --git a/test/run_tests.py b/test/run_tests.py index b6c178f234f..a34cf48a32f 100644 --- a/test/run_tests.py +++ b/test/run_tests.py @@ -822,7 +822,7 @@ if __name__ == '__main__': # don't fork if requiring interactive terminal print('Running tests in foreground in the current process') full_suite = unittest.TestSuite() - map(full_suite.addTests, suites) + full_suite.addTests(suites) result = VppTestRunner(verbosity=verbose, failfast=failfast, print_summary=True).run(full_suite)