Skip to content
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

gh-128770: raise warnings as errors in test suite - except for test_socket which still logs warnings, and internal test warnings that are now logged #128973

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a6bb15e
Reapply "gh-128770: raise warnings as errors in test suite - except f…
graingert Jan 18, 2025
baab6a3
convert internal test warnings into logger calls
graingert Jan 18, 2025
c933487
Apply suggestions from code review
graingert Jan 18, 2025
9e532fa
test that support logs instead of warns
graingert Jan 18, 2025
c06c3db
Merge branch 'main' into warnings-as-error-2
graingert Jan 18, 2025
ba36dc0
Merge branch 'main' into warnings-as-error-2
graingert Jan 18, 2025
7123093
Merge branch 'main' into warnings-as-error-2
graingert Jan 18, 2025
33c84e6
Merge branch 'main' into warnings-as-error-2
graingert Jan 18, 2025
104f427
Update test_hashlib.py
graingert Jan 18, 2025
1b44669
Merge branch 'main' into warnings-as-error-2
graingert Jan 19, 2025
36bba4e
Merge branch 'main' into warnings-as-error-2
graingert Jan 20, 2025
b5fc0df
sort logging import
graingert Jan 20, 2025
6bdaad4
Update Lib/test/test_support.py
graingert Jan 20, 2025
3473aab
Update Lib/test/test_support.py
graingert Jan 20, 2025
b49e3f9
Update Lib/test/test_support.py
graingert Jan 20, 2025
b92cbec
Update Lib/test/test_support.py
graingert Jan 20, 2025
fbb99a3
Apply suggestions from code review
graingert Jan 20, 2025
f6909e8
move logging into alphabetical position
graingert Jan 21, 2025
3b895f2
do the hanging indent
graingert Jan 21, 2025
8e17c8a
use indexing rather than unpacking one item
graingert Jan 21, 2025
7ecc3b0
Merge branch 'main' into warnings-as-error-2
graingert Jan 21, 2025
9af76bd
Merge branch 'main' into warnings-as-error-2
graingert Jan 22, 2025
8250358
Merge branch 'main' into warnings-as-error-2
graingert Jan 22, 2025
b1334ea
Merge branch 'main' into warnings-as-error-2
graingert Jan 25, 2025
94fd5b7
Merge branch 'main' into warnings-as-error-2
graingert Jan 25, 2025
1af4d6f
prevent SyntaxError/SyntaxWarning in test_fstring
graingert Jan 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update test_hashlib.py
  • Loading branch information
graingert authored Jan 18, 2025
commit 104f4275b3e5892a2843c000a8b66019ca2daa7f
2 changes: 1 addition & 1 deletion Lib/test/test_hashlib.py
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@
# Licensed to PSF under a Contributor Agreement.
#

import logging
import array
from binascii import unhexlify
import hashlib
import importlib
import io
import itertools
import logging
import os
import sys
import sysconfig
Loading