]> granicus.if.org Git - python/commitdiff
cygwin's curses support isn't up to scratch to run the tests.
authorAnthony Baxter <anthonybaxter@gmail.com>
Tue, 4 Apr 2006 13:32:08 +0000 (13:32 +0000)
committerAnthony Baxter <anthonybaxter@gmail.com>
Tue, 4 Apr 2006 13:32:08 +0000 (13:32 +0000)
Lib/test/test_curses.py

index a4a45a7302dfd7dbf9a1f4f5d152374573dc140e..126251eda954092629b58a9e753d77764f8a2c1a 100644 (file)
@@ -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)