refactor(tests): split integration.rs into focused subfolders

- Delete 20 duplicate tests already covered by parameter_tests.rs
- Move 11 pure Trial unit tests into src/trial.rs
- Split remaining 84 integration tests into tests/study/ (9 modules)
- Group sampler tests into tests/sampler/ (7 modules)
- Group pruner tests into tests/pruner/ (2 modules)
This commit is contained in:
Manuel Raimann
2026-02-12 12:49:24 +01:00
parent 964b4d5749
commit d81d1de4ff
23 changed files with 1991 additions and 2256 deletions
+15
View File
@@ -0,0 +1,15 @@
#![allow(
clippy::cast_sign_loss,
clippy::cast_precision_loss,
clippy::cast_possible_truncation
)]
mod ask_tell;
mod builder;
mod constraints;
mod enqueue;
mod iterator;
mod objective;
mod summary;
mod top_trials;
mod workflow;