cygwin's curses support isn't up to scratch to run the tests.

This commit is contained in:
Anthony Baxter 2006-04-04 13:32:08 +00:00
parent 1b6cab6531
commit 768018592c
1 changed files with 3 additions and 0 deletions

View 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)