Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ coverage:
status:
patch: off
project: off
range: "70..100"
range: "70..100"
2 changes: 1 addition & 1 deletion gm-quic/tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub fn run<F: Future>(future: F) -> F::Output {

RT.block_on(async move {
LazyLock::force(&TRACING);
match time::timeout(Duration::from_secs(60), future).await {
match time::timeout(Duration::from_secs(120), future).await {
Ok(output) => output,
Err(_timedout) => panic!("test timed out"),
}
Expand Down
Loading
Loading