diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d660e063..0dfda541 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -83,6 +83,6 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Clippy check - run: cargo clippy + run: cargo clippy --workspace --tests --examples --all-features diff --git a/generator-build/src/lib.rs b/generator-build/src/lib.rs index c78c2d46..8399d3bc 100644 --- a/generator-build/src/lib.rs +++ b/generator-build/src/lib.rs @@ -107,16 +107,3 @@ impl GeneratorConfig { Ok(result) } } - -#[cfg(test)] -mod tests { - #[test] - fn test_generator_config() { - let config = super::GeneratorConfig { - input: std::path::PathBuf::from("generated"), - }; - let res = config.generate().unwrap(); - - println!("{res}"); - } -}