https://github.com/python/cpython/commit/2cf67d3696a71f865f8078a66fb0aee309f1b42f commit: 2cf67d3696a71f865f8078a66fb0aee309f1b42f branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s <[email protected]> date: 2024-09-24T00:35:14Z summary:
[3.13] gh-124083: Skip test_signal.test_strsignal() on NetBSD (GH-124084) (#124223) gh-124083: Skip test_signal.test_strsignal() on NetBSD (GH-124084) Skip test_strsignal() on NetBSD due to TypeError. (cherry picked from commit 36682c091407dc9c7e750c22fb71e62466952662) Co-authored-by: Furkan Onder <[email protected]> Co-authored-by: T. Wouters <[email protected]> files: M Lib/test/test_signal.py diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py index 591cd4177d9f41..8101322347edc7 100644 --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -123,6 +123,8 @@ def __repr__(self): self.assertEqual(signal.getsignal(signal.SIGHUP), hup) self.assertEqual(0, argument.repr_count) + @unittest.skipIf(sys.platform.startswith("netbsd"), + "gh-124083: strsignal is not supported on NetBSD") def test_strsignal(self): self.assertIn("Interrupt", signal.strsignal(signal.SIGINT)) self.assertIn("Terminated", signal.strsignal(signal.SIGTERM)) _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
