8000 gh-128770: raise warnings as errors in test suite - except for test_socket which still logs warnings by graingert · Pull Request #128726 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-128770: raise warnings as errors in test suite - except for test_socket which still logs warnings #128726

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

Merged
merged 21 commits into from
Jan 17, 2025
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
0d28ddd
gh-110012: Fix `RuntimeWarning` in `test_socket`
sobolevn Sep 28, 2023
da358cc
Typos!
sobolevn Sep 28, 2023
cf0cfd0
Typos!
sobolevn Sep 28, 2023
dfda254
Use `quiet=True` by default
sobolevn Sep 28, 2023
ec6a368
fix warnings in test_importlib.test_abc
graingert Jan 16, 2025
a5c2b7a
fix warnings found in test_importlib.test_windows
graingert Jan 16, 2025
0f2afcd
set warnings as errors everywhere
graingert Jan 11, 2025
8e97f04
Merge branch 'main' into issue110012
graingert Jan 16, 2025
4982ba4
Merge branch 'issue110012' into run-test-suite-with-warnings-as-error
graingert Jan 16, 2025
f45b3b8
Update test_socket.py
graingert Jan 16, 2025
0bc4c2a
Merge branch 'issue110012' into run-test-suite-with-warnings-as-error
graingert Jan 16, 2025
ca5eb67
fix ResourceWarning in test_pyrepl
graingert Jan 16, 2025
a13e948
Merge branch 'fix-resource-warning-in-test-pyrepl' into run-test-suit…
graingert Jan 16, 2025
7b2b437
downgrade rather than ignore malformed socket warning
graingert Jan 16, 2025
f2cb9b4
Merge branch 'main' into run-test-suite-with-warnings-as-error
graingert Jan 16, 2025
32cd095
Update Lib/test/test_socket.py
graingert Jan 16, 2025
db0cb51
Update Lib/test/test_socket.py
graingert Jan 16, 2025
61eb61f
Update Lib/test/test_socket.py
graingert Jan 16, 2025
91ee5ee
oops, it's not pytest
graingert Jan 16, 2025
720cca0
8000 Merge branch 'main' into run-test-suite-with-warnings-as-error
brettcannon Jan 16, 2025
23469c3
Merge branch 'main' into run-test-suite-with-warnings-as-error
graingert Jan 17, 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_socket.py
  • Loading branch information
graingert authored Jan 16, 2025
commit f45b3b89fdfc1e7c8fd24261efb1568bbfa54d47
3 changes: 2 additions & 1 deletion Lib/test/test_socket.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import unittest
from test import support
from test.support import (
is_apple, os_helper, refleak_helper, socket_helper, threading_helper
is_apple, os_helper, refleak_helper, socket_helper, threading_helper,
warnings_helper,
)
import _thread as thread
import array
Expand Down
Loading
0