Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
2aa5771
test waitid on linux even with pidfd support
graingert Dec 19, 2024
8501b0c
refactor duplicate code in gen_exports
graingert Dec 19, 2024
be08460
more coverage in test_dtls
graingert Dec 19, 2024
2722418
cover monitors
graingert Dec 19, 2024
8858398
test cancel wait without pidfd
graingert Dec 19, 2024
e5fa8cd
test OSError in waitid
graingert Dec 19, 2024
340373d
Update src/trio/_core/_tests/test_io.py
graingert Dec 19, 2024
d436b06
Update src/trio/_core/_tests/test_io.py
graingert Dec 20, 2024
0ac717d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 20, 2024
1398349
Merge branch 'main' into 100-coverage
graingert Dec 20, 2024
34d6399
filterwarning
graingert Dec 20, 2024
818094a
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 20, 2024
3dac42d
try two assertions
graingert Dec 20, 2024
dda9a27
ok what, this is very strange, but works.
graingert Dec 20, 2024
bd81624
no cover some unreachable pytest.fail code
graingert Dec 20, 2024
640f581
remove some unused code from test_subprocess.py
graingert Dec 20, 2024
50d848d
always use SSL_OP_NO_TLSv1_3 - now that it's available
graingert Dec 20, 2024
28ee44a
cowardly hide from the coverage check using a ternery
graingert Dec 20, 2024
ac30b6b
Revert "more coverage in test_dtls"
graingert Dec 20, 2024
f312a70
an empty string joined with '' is a noop, so this branch is redundant
graingert Dec 20, 2024
badc910
test errors in CancelScope ctor
graingert Dec 20, 2024
a57247a
cover code in the contextvars counter
graingert Dec 20, 2024
5344e71
test more of kqueue
graingert Dec 20, 2024
8f05dbf
actually enter the cmgr
graingert Dec 20, 2024
1ec824c
no cover unreachable cmgr inside
graingert Dec 20, 2024
a0f33ee
remove await - it seems to timeout
graingert Dec 20, 2024
cc4b217
add newsfragment
graingert Dec 20, 2024
24917b7
bump the lower end of the coverage range
graingert Dec 20, 2024
68de044
add todo to nocov
graingert Dec 20, 2024
95b1f75
ignore some coverage with TODOs
graingert Dec 20, 2024
becdf2a
assert there's no node in cached_type_info
graingert Dec 20, 2024
3f34731
require 100% coverage
graingert Dec 20, 2024
bd097dd
Update .codecov.yml
graingert Dec 20, 2024
dcfe01a
Merge branch 'main' into 100-coverage
graingert Dec 20, 2024
431f2ed
more TODO comments
graingert Dec 20, 2024
117fe04
add one last TODO
graingert Dec 20, 2024
84de11a
fix patches comment in .codecov.yml
graingert Dec 20, 2024
2484749
swap branch for line in dtls
graingert Dec 20, 2024
d055b38
Update newsfragments/3159.misc.rst
graingert Dec 20, 2024
afa13f5
Update src/trio/_tests/test_exports.py
graingert Dec 21, 2024
e78f317
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 21, 2024
d962e05
Update src/trio/_tools/gen_exports.py
graingert Dec 21, 2024
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
3 changes: 3 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ coverage:
range: 100..100
status:
# require patches to be 100%
project:
default:
target: 100%
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FTR with #3162, there's going to be a need to split the checks into MyPy vs. pytest.

patch:
default:
target: 100%
Loading