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

ci(clippy): include benchmarks #2372

Merged
merged 2 commits into from
Jan 20, 2025
Merged

ci(clippy): include benchmarks #2372

merged 2 commits into from
Jan 20, 2025

Conversation

mxinden
Copy link
Collaborator

@mxinden mxinden commented Jan 17, 2025

No description provided.

Copy link

codecov bot commented Jan 17, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 95.29%. Comparing base (df0a4dd) to head (c977efb).
Report is 1 commits behind head on main.

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.
📢 Have feedback on the report? Share it here.

@mxinden
Copy link
Collaborator Author

mxinden commented Jan 17, 2025

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,

Copy link

github-actions bot commented Jan 17, 2025

Failed Interop Tests

QUIC Interop Runner, client vs. server, differences relative to df0a4dd.

neqo-latest as client

neqo-latest as server

All results

Succeeded Interop Tests

QUIC Interop Runner, client vs. server

neqo-latest as client

neqo-latest as server

Unsupported Interop Tests

QUIC Interop Runner, client vs. server

neqo-latest as client

neqo-latest as server

@mxinden mxinden marked this pull request as ready for review January 20, 2025 10:40
@mxinden mxinden enabled auto-merge January 20, 2025 10:40
@mxinden mxinden added this pull request to the merge queue Jan 20, 2025
Merged via the queue into mozilla:main with commit 7218cff Jan 20, 2025
65 of 70 checks passed
@mxinden mxinden deleted the clippy-bench branch January 20, 2025 11:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants