Skip to content

Commit

Permalink
make Scheduler::schedule_tests public
Browse files Browse the repository at this point in the history
  • Loading branch information
intarga committed Jan 6, 2025
1 parent ccaa8af commit 5f70d99
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/scheduler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ impl Scheduler {
}
}

fn schedule_tests(pipeline: &Pipeline, data: DataCache) -> Result<Vec<CheckResult>, Error> {
/// Directly invoke a Pipeline on a Datacache. If you want the scheduler to fetch the Pipeline
/// and DataCache for you, see [`validate_direct`](Scheduler::validate_direct).
pub fn schedule_tests(pipeline: &Pipeline, data: DataCache) -> Result<Vec<CheckResult>, Error> {
pipeline
.steps
.iter()
Expand Down

0 comments on commit 5f70d99

Please sign in to comment.