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

ignore the run_all_tests test in benchmark.rs #489

Merged
merged 2 commits into from
Dec 10, 2024
Merged
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
7 changes: 6 additions & 1 deletion cedar-drt/tests/benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,12 @@ fn print_summary(auth_times: HashMap<&str, Vec<f64>>, val_times: HashMap<&str, V
}

#[test]
fn run_all_tests() {
#[ignore] // doesn't test anything, just prints timing results -- run this on
// demand but not in CI.
adpaco-aws marked this conversation as resolved.
Show resolved Hide resolved
// note that actual Lean functionality on the corpus tests is tested
// by a test called `integration_tests_on_def_impl()`, in
// integration_tests.rs.
fn print_timing_results() {
let rust_impl = RustEngine::new();
let lean_impl = LeanDefinitionalEngine::new();

Expand Down
Loading