Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions bottlerocket/agents/src/sonobuoy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const SONOBUOY_STATUS_TIMEOUT: u64 = 900;

/// Runs the sonobuoy conformance tests according to the provided configuration and returns a test
/// result at the end.
#[allow(clippy::needless_borrows_for_generic_args)]
pub async fn run_sonobuoy<I>(
kubeconfig_path: &str,
e2e_repo_config_path: Option<&str>,
Expand Down
2 changes: 1 addition & 1 deletion model/src/test_manager/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub use error::{Error, Result};
pub use manager::{read_manifest, TestManager};
use serde::{Deserialize, Serialize};
use serde_plain::derive_fromstr_from_deserialize;
pub use status::{StatusColumn, StatusSnapshot};
pub use status::{crd_results, crd_state, crd_type, ResultType, StatusColumn, StatusSnapshot};
use std::collections::HashMap;

mod delete;
Expand Down
Loading