diff --git a/CREDITS b/CREDITS index b54fac21b..f6e2b1991 100644 --- a/CREDITS +++ b/CREDITS @@ -503,3 +503,7 @@ I: 1127 N: Akos Kiss W: https://github.com/akosthekiss I: 1150 + +N: Adrian Page +W: https://github.com/adpag +I: 1159, 1160, 1161 diff --git a/psutil/tests/test_unicode.py b/psutil/tests/test_unicode.py index 4e2289bf0..e491d3dc7 100755 --- a/psutil/tests/test_unicode.py +++ b/psutil/tests/test_unicode.py @@ -335,6 +335,9 @@ def test_name_type(self): class TestNonFSAPIS(unittest.TestCase): """Unicode tests for non fs-related APIs.""" + def tearDown(self): + reap_children() + @unittest.skipIf(not HAS_ENVIRON, "not supported") def test_proc_environ(self): # Note: differently from others, this test does not deal @@ -352,7 +355,6 @@ def test_proc_environ(self): self.assertIsInstance(k, str) self.assertIsInstance(v, str) self.assertEqual(env['FUNNY_ARG'], funky_str) - reap_children() if __name__ == '__main__':