Skip to content

Commit

Permalink
fix: Disable generation of criterion HTML graphs
Browse files Browse the repository at this point in the history
Because we pin the benchmark runs to single cores, and criterion hence
runs the report generation also on those cores, and based on `top`
output it appears as this is parallelized and hence may interfere
with the benchmark runs.
  • Loading branch information
larseggert committed Mar 11, 2024
1 parent c551f49 commit f9032fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neqo-transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ qlog = { version = "0.12", default-features = false }
smallvec = { version = "1.11", default-features = false }

[dev-dependencies]
criterion = { version = "0.5", default-features = false, features = ["html_reports"] }
criterion = { version = "0.5", default-features = false }
enum-map = { version = "2.7", default-features = false }
test-fixture = { path = "../test-fixture" }

Expand Down

0 comments on commit f9032fe

Please sign in to comment.