From e090f7217c733618aaac3ade651b5ca14d9bfe4e Mon Sep 17 00:00:00 2001 From: Moshe Jacobs Date: Fri, 17 Feb 2023 04:31:58 +0200 Subject: [PATCH] UnitTest fix for #489: ignore multiprocessing Much like in PR #481, when adding a library to the DEFAULT_IGNORE_LIST, the config test should be adapted to expect that library to be ignored as well. --- tests/test_configure.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_configure.py b/tests/test_configure.py index cabd7806..9dc08062 100644 --- a/tests/test_configure.py +++ b/tests/test_configure.py @@ -46,6 +46,7 @@ def test_extend_default_ignore_list(): 'django.utils.six.moves', 'google.gax', 'threading', + 'multiprocessing', 'Queue', 'selenium', '_pytest.terminal.',