forked from pool/python-pycurl
- Drop patch test-bottle-flask.patch, not needed anymore
- Update to 7.45.6:
* Re-enable building Linux wheels with CA bundle autodetection
- 7.45.5
* Enable GSS-API and brotli support in wheels (patch by Scott Talbert).
* Add support for calling getinfo with CURLOPT_*_T arguments
(patch by Scott Talbert)
* Change wheels to build using shared libraries (vice static libraries)
(patch by Scott Talbert)
* Build wheels with curl 8.12.1 (mainly for security fixes)
- 7.45.4
* Add support for CURLOPT_HAPROXY_CLIENT_IP (patch by Scott Talbert).
* Port tests from bottle to flask (patch by Miro Hrončok).
* Add constant for CURL_HTTP_VERSION_3ONLY (patch by Pavel Horáček).
* Add EFFECTIVE_METHOD info option (patch by Pavel Horáček).
* Don't use `-flat_namespace` on macOS (patch by Michael Cho).
* Add some missing GIL checks to callback functions
(patch by Scott Talbert).
* Fix assorted bugs in pycurl tests, including a segfault
(patch by Scott Talbert). All tests should now pass on Linux and
macOS.
* Fix minor bug in examples/multi-socket_action-select.py
(patch by Oleg Broytman).
* Build all wheels using the latest version of libcurl and its
dependencies (patch by Scott Talbert). All wheels should now have
openssl, HTTP2, and SSH support.
* Implement Certificate Authority path autodetection when building
Linux wheels (patch by Scott Talbert).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pycurl?expand=0&rev=116
20 lines
596 B
Diff
20 lines
596 B
Diff
---
|
|
tests/runwsgi.py | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/tests/runwsgi.py
|
|
+++ b/tests/runwsgi.py
|
|
@@ -56,10 +56,10 @@ def start_bottle_server(app, port, serve
|
|
server_thread.daemon = True
|
|
server_thread.start()
|
|
|
|
- ok = util.wait_for_network_service(('127.0.0.1', port), 0.1, 10)
|
|
+ ok = util.wait_for_network_service(('127.0.0.1', port), 0.1, 30)
|
|
if not ok:
|
|
import warnings
|
|
- warnings.warn('Server did not start after 1 second')
|
|
+ warnings.warn('Server did not start after 3 seconds')
|
|
|
|
return server_thread.server
|
|
|