Skip to content

Commit a0367b9

Browse files
author
Boxiang Sun
committed
update CPython test notes
1 parent 0e5c9b8 commit a0367b9

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,13 @@ addons:
5353
- python-dev
5454
- texlive-extra-utils
5555
- libcurl4-openssl-dev
56-
- libxml2-dev
56+
- libxml2-dev
5757
- libxslt1-dev
5858
- libssl-dev
59+
- libtk8.5
60+
- libtcl8.5
61+
- tcl8.6-dev
62+
- tk-dev
5963
- swig
6064

6165
before_install:

from_cpython/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ def tkinkter_ext():
175175
# Hack: Just hardcode the includes dir and tcl/tk lib dir like our cffi ext.
176176
# May want something more robust later.
177177
tcl_inc = ['/usr/include/tcl']
178-
tcl_lib = "tcl8.6"
179-
tk_lib = "tk8.6"
178+
tcl_lib = "tcl8.5"
179+
tk_lib = "tk8.5"
180180

181181
ext.include_dirs.extend(tcl_inc)
182182
ext.libraries.append(tcl_lib)

test/CPYTHON_TEST_NOTES.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ test_bz2 leaks
3232
test_capi [unknown]
3333
test_cd [unknown]
3434
test_cfgparser works when run from inside the from_cpython dir
35-
test_cgi leaks
3635
test_class needs ellipsis
3736
test_cl [unknown]
3837
test_cmd_line_script [unknown]
@@ -139,7 +138,6 @@ test_pydoc [unknown]
139138
test_random long("invalid number")
140139
test_repr complex.__hash__; some unknown issues
141140
test_resource fails on travis-ci: setrlimit RLIMIT_CPU not allowed to raise maximum limit
142-
test_richcmp PyObject_Not
143141
test_runpy [unknown]
144142
test_scope eval of code object from existing function (not currently supported)
145143
test_scriptpackages [unknown]

0 commit comments

Comments
 (0)