diff options
author | Ava Hahn <a.hahn@f5.com> | 2024-05-09 17:25:00 -0700 |
---|---|---|
committer | avahahn <110854134+avahahn@users.noreply.github.com> | 2024-05-14 14:38:54 -0700 |
commit | a98acdedd737c48329aef7d414b4391adcc578c8 (patch) | |
tree | 7cc31b9db5bb9ea17762ac4f56ae47602c6d8f46 /tools/unitctl | |
parent | 149555dbb6d68c15b4d8752e76e995ff6ba36fe6 (diff) | |
download | unit-a98acdedd737c48329aef7d414b4391adcc578c8.tar.gz unit-a98acdedd737c48329aef7d414b4391adcc578c8.tar.bz2 |
ci: Add unit testing to unitctl CI workflow
* fix a few misspellings in unitctl CI workflow
* add unit testing job
* exclude unitd integration test from unit tests
* add workflow dispatch trigger
* add calls to get workflow dispatch version
Signed-off-by: Ava Hahn <a.hahn@f5.com>
Diffstat (limited to 'tools/unitctl')
-rw-r--r-- | tools/unitctl/unit-client-rs/src/unitd_configure_options.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/unitctl/unit-client-rs/src/unitd_configure_options.rs b/tools/unitctl/unit-client-rs/src/unitd_configure_options.rs index 88ab1101..00ee22a3 100644 --- a/tools/unitctl/unit-client-rs/src/unitd_configure_options.rs +++ b/tools/unitctl/unit-client-rs/src/unitd_configure_options.rs @@ -221,6 +221,7 @@ mod tests { } #[test] + #[ignore] // run this one manually - not in CI fn can_run_unitd() { let specific_path = std::env::var(UNITD_PATH_ENV_KEY).map_err(|error| Box::new(error) as Box<dyn stdError>); let unitd_path = unitd_instance::find_executable_path(specific_path); |