From 768018592cabfbf1e3199bd25b14ceec54476ce3 Mon Sep 17 00:00:00 2001 From: Anthony Baxter Date: Tue, 4 Apr 2006 13:32:08 +0000 Subject: cygwin's curses support isn't up to scratch to run the tests. --- Lib/test/test_curses.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py index a4a45a7..126251e 100644 --- a/Lib/test/test_curses.py +++ b/Lib/test/test_curses.py @@ -24,6 +24,9 @@ term = os.environ.get('TERM') if not term or term == 'unknown': raise TestSkipped, "$TERM=%r, calling initscr() may cause exit" % term +if sys.platform == "cygwin": + raise TestSkipped("cygwin's curses mostly just hangs") + def window_funcs(stdscr): "Test the methods of windows" win = curses.newwin(10,10) -- cgit v0.12