From a94abb085814c1792128b7e3d70343a6a59e60a7 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 11 Mar 2016 06:53:52 +0100 Subject: [PATCH] tox: Update CherryPy to 5.1.0 * Bugfix for ``test_HTTP11_pipelining`` test in Python 3.5 * Bugfix regarding the keyword arguments support for Python 3 on the config file. * Bugfix for ``test_2_KeyboardInterrupt`` test in Python 3.5. by monkey patching the HTTPRequest given a bug on CPython that is affecting the testsuite (https://bugs.python.org/issue23377). * Add additional parameter ``raise_subcls`` to the tests helpers `openURL` and ``CPWebCase.getPage`` to have finer control on which exceptions can be raised. * Add support for direct keywords on the calls (e.g. ``foo=bar``) on the config file under Python 3. * Add additional validation to determine if the process is running as a daemon on ``cherrypy.process.plugins.SignalHandler`` to allow the execution of the testsuite under CI tools. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 2950a5d01..c549641cc 100644 --- a/tox.ini +++ b/tox.ini @@ -44,7 +44,7 @@ deps = vulture==0.8.1 Werkzeug==0.11.4 wheel==0.29.0 - cherrypy==5.0.1 + cherrypy==5.1.0 commands = {envpython} scripts/link_pyqt.py --tox {envdir} {envpython} -m py.test {posargs:tests}