[Python-checkins] r43631 - python/trunk/Lib/test/test_curses.py

anthony.baxter python-checkins at python.org
Tue Apr 4 15:32:09 CEST 2006


Author: anthony.baxter
Date: Tue Apr  4 15:32:08 2006
New Revision: 43631

Modified:
   python/trunk/Lib/test/test_curses.py
Log:
cygwin's curses support isn't up to scratch to run the tests.


Modified: python/trunk/Lib/test/test_curses.py
==============================================================================
--- python/trunk/Lib/test/test_curses.py	(original)
+++ python/trunk/Lib/test/test_curses.py	Tue Apr  4 15:32:08 2006
@@ -24,6 +24,9 @@
 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)


More information about the Python-checkins mailing list