diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2021-05-06 16:29:04 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2021-05-06 16:29:04 +0200 |
commit | 127ddb5ceed63f597f9a6fc13851a6c91734e9ac (patch) | |
tree | fb62e39932007b32dd03a2b727610263e5d11ddc | |
parent | b4b354c84df85736c6c6b7547f7d4d3b330603ba (diff) | |
download | aports-127ddb5ceed63f597f9a6fc13851a6c91734e9ac.tar.gz aports-127ddb5ceed63f597f9a6fc13851a6c91734e9ac.tar.bz2 aports-127ddb5ceed63f597f9a6fc13851a6c91734e9ac.tar.xz |
main/python3: disable test_curses
it fails on all builders with the error:
======================================================================
ERROR: setUpClass (test.test_curses.TestCurses)
----------------------------------------------------------------------
Traceback (most recent call last):
File
"/home/buildozer/aports/main/python3/src/Python-3.8.10/Lib/test/test_curses.py",
line 66, in setUpClass
curses.setupterm(fd=stdout_fd)
_curses.error: setupterm: could not find terminal
-rw-r--r-- | main/python3/APKBUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/python3/APKBUILD b/main/python3/APKBUILD index 3caf4ff3b0a..3e5deecb594 100644 --- a/main/python3/APKBUILD +++ b/main/python3/APKBUILD @@ -109,6 +109,7 @@ EOF fail="$fail test_multiprocessing_main_handling" # fails on x86_64 fail="$fail test_runpy" # fails on x86_64 fail="$fail test_asyncio" # hangs; routinely problematic (e.g. bpo-39101, bpo-41891, bpo-42183) + fail="$fail test_curses" # fails on all arches # kernel related fail="$fail test_fcntl" # wants DNOTIFY, we don't have it |