From a1ab4bb620eaa0dad123df129824652fa8ebe839 Mon Sep 17 00:00:00 2001 From: Vladimir Diaz Date: Wed, 2 May 2018 16:14:04 -0400 Subject: [PATCH] Load only test_updater.py in aggregate_tests.py Signed-off-by: Vladimir Diaz --- tests/aggregate_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/aggregate_tests.py b/tests/aggregate_tests.py index 1a0902ef..01c2130f 100755 --- a/tests/aggregate_tests.py +++ b/tests/aggregate_tests.py @@ -43,7 +43,7 @@ # 'test_' and end with '.py'. A shell-style wildcard is used with glob() to # match desired filenames. All the tests matching the pattern will be loaded # and run in a test suite. -tests_list = glob.glob('test_slow_retrieval_attack.py') +tests_list = glob.glob('test_updater.py') # Remove '.py' from each filename to allow loadTestsFromNames() (called below) # to properly load the file as a module.