-
-
Notifications
You must be signed in to change notification settings - Fork 31.8k
gh-133677: Skip test in test_httpservers
if not utf-8
#133706
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Calling the raspbian buildbots would verify this is solved. |
@StanFromIreland Is it okay if I handle the zipfile test fail? I worked alot with the zipfile lib |
!buildbot raspbian |
🤖 New build scheduled with the buildbot fleet by @ZeroIntensity for commit e45a58d 🤖 Results will be shown at: https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F133706%2Fmerge The command will test the builders whose names match following regular expression: The builders matched are:
|
Test passes on buildbot. |
Lib/test/test_httpservers.py
Outdated
def test_undecodable_parameter(self): | ||
# sanity check using a valid parameter | ||
response = self.request(self.base_url + '/?x=123').read() | ||
self.assertRegex(response, rf'listing for {self.base_url}/\?x=123'.encode('latin1')) | ||
# now the bogus encoding | ||
# now the bogus (utf-8) encoding |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment should be reverted as well.
latin-1
#133677