-
Notifications
You must be signed in to change notification settings - Fork 127
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
ci(clippy): include benchmarks #2372
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2372 +/- ##
=======================================
Coverage 95.29% 95.29%
=======================================
Files 114 114
Lines 36856 36856
Branches 36856 36856
=======================================
Hits 35123 35123
Misses 1727 1727
Partials 6 6 ☔ View full report in Codecov by Sentry. |
Note that we can do the change below once async closures are stable: diff --git a/neqo-bin/benches/main.rs b/neqo-bin/benches/main.rs
index b2ef0987..43220b61 100644
--- a/neqo-bin/benches/main.rs
+++ b/neqo-bin/benches/main.rs
@@ -57,7 +57,7 @@ fn transfer(c: &mut Criterion) {
group.bench_function("client", |b| {
b.to_async(Runtime::new().unwrap()).iter_batched(
|| client::client(client::Args::new(&requests, upload)),
- |client| async move {
+ async |client| {
client.await.unwrap();
},
BatchSize::PerIteration, |
Failed Interop TestsQUIC Interop Runner, client vs. server, differences relative to df0a4dd. neqo-latest as client
neqo-latest as server
All resultsSucceeded Interop TestsQUIC Interop Runner, client vs. server neqo-latest as client
neqo-latest as server
Unsupported Interop TestsQUIC Interop Runner, client vs. server neqo-latest as client
neqo-latest as server
|
No description provided.