From 08827661e115568e4dbbb4d917a07eafd18a41d8 Mon Sep 17 00:00:00 2001 From: Hood Chatham Date: Wed, 23 Feb 2022 21:57:48 -0500 Subject: [PATCH] Actually run wrapt tests (#2207) --- packages/wrapt/test_wrapt.py | 4 ++++ 1 file changed, 4 insertions(+) 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()