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 gaggle tests consistently #603

Merged
merged 1 commit into from
Aug 27, 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
4 changes: 2 additions & 2 deletions tests/one_taskset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ async fn test_one_scenario() {
run_standalone_test(TestType::NoResetMetrics).await;
}

#[ignore]
#[tokio::test(flavor = "multi_thread", worker_threads = 8)]
#[cfg_attr(not(feature = "gaggle"), ignore)]
#[serial]
// Test a single scenario with multiple weighted transactions, in Gaggle mode.
async fn test_one_scenario_gaggle() {
Expand All @@ -253,8 +253,8 @@ async fn test_one_scenario_reset_metrics() {
run_standalone_test(TestType::ResetMetrics).await;
}

#[ignore]
#[tokio::test(flavor = "multi_thread", worker_threads = 8)]
#[cfg_attr(not(feature = "gaggle"), ignore)]
#[serial]
// Test a single scenario with multiple weighted transactions, enable --no-reset-metrics
// in Gaggle mode.
Expand Down
Loading