summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2006-04-04 13:32:08 +0000
committerAnthony Baxter <anthonybaxter@gmail.com>2006-04-04 13:32:08 +0000
commit768018592cabfbf1e3199bd25b14ceec54476ce3 (patch)
tree717f7dc8eea0a915c1bec128da2519346f2fa371
parent1b6cab65319a4374e2f93c3b8b247c9642489d1e (diff)
downloadcpython-git-768018592cabfbf1e3199bd25b14ceec54476ce3.tar.gz
cygwin's curses support isn't up to scratch to run the tests.
-rw-r--r--Lib/test/test_curses.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py
index a4a45a7302..126251eda9 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)