Commit 464e278d authored by Anthony Baxter's avatar Anthony Baxter

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

parent c7c9186d
...@@ -24,6 +24,9 @@ term = os.environ.get('TERM') ...@@ -24,6 +24,9 @@ term = os.environ.get('TERM')
if not term or term == 'unknown': if not term or term == 'unknown':
raise TestSkipped, "$TERM=%r, calling initscr() may cause exit" % term 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): def window_funcs(stdscr):
"Test the methods of windows" "Test the methods of windows"
win = curses.newwin(10,10) win = curses.newwin(10,10)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment