diff --git a/packages/wrapt/test_wrapt.py b/packages/wrapt/test_wrapt.py index 71639dfdf..be77e27c0 100644 --- a/packages/wrapt/test_wrapt.py +++ b/packages/wrapt/test_wrapt.py @@ -81,3 +81,7 @@ def test_wrapt(): result = _function(*_args, **_kwargs) self.assertEqual(result, (_args, _kwargs)) + + # Run tests + with unittest.TestCase().assertRaisesRegex(SystemExit, "False"): + unittest.main()