Included tests to run test --clean from include_dir projects
Some checks failed
CI / Test (Linux) (push) Has been cancelled
CI / Test (Windows MSVC) (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled

This commit is contained in:
Eric Ratliff
2026-02-22 18:23:13 -06:00
parent 05f248577f
commit d5220bea03
2 changed files with 270 additions and 1 deletions

View File

@@ -440,7 +440,11 @@ Upload these to a Gitea release. The script requires `build-essential`,
cargo test
```
642 tests (137 unit + 505 integration), ~4 seconds, zero warnings.
642 unit/integration tests plus 7 end-to-end tests, zero warnings. The e2e
tests generate real projects and compile their C++ test suites, catching
build-system issues like missing linker flags and include paths. They require
cmake and a C++ compiler; if those tools are not installed, the compile tests
skip gracefully and everything else still passes.
---