Skip to content

Commit

Permalink
mock fork handler
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaraditya303 committed Aug 3, 2023
1 parent 2d7a150 commit f609dbc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Lib/test/test_tools/test_sundry.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@

import os
import unittest
from test.support import import_helper

from test.test_tools import scriptsdir, import_tool, skip_if_missing

skip_if_missing()

class TestSundryScripts(unittest.TestCase):

def test_sundry(self,):
# import logging registers "atfork" functions which keep indirectly the
# logging module dictionary alive. Mock the function to be able to unload
# cleanly the logging module.
@import_helper.mock_register_at_fork
def test_sundry(self, mock_os):
for fn in os.listdir(scriptsdir):
if not fn.endswith('.py'):
continue
Expand Down

0 comments on commit f609dbc

Please sign in to comment.