Skip to content

Commit

Permalink
Pinn waitress = 2.1.2 in Python 3.7 and 3.8 to fix robot tests
Browse files Browse the repository at this point in the history
waitress = 2.1.2 fix the error:

   OSError: [Errno 9] Bad file descriptor

See: Pylons/waitress#374

This error causes the server to "freeze" on robot tests and the tests
never finish.
  • Loading branch information
wesleybl committed Jun 2, 2022
1 parent 7ada60e commit ab681a9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test_plone52.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,15 @@ extends =

[versions:python27]
lazy-object-proxy = 1.6.0

# FIXME: waitress = 2.1.2 fix the error:
# OSError: [Errno 9] Bad file descriptor
# See: https://github.com/Pylons/waitress/issues/374
# This error causes the server to "freeze" on robot tests and the tests never finish.
# waitress = 2.1.2 has been pinned in Zope 4.8.2. So this pinn here should be removed
# when Plone 5.2.9 is released.
[versions:python37]
waitress = 2.1.2

[versions:python38]
waitress = 2.1.2

0 comments on commit ab681a9

Please sign in to comment.