heim_derive

Attribute Macro skip_ci

Source
#[skip_ci]
Expand description

Used for #[heim_derive::test]-annotated functions

Will not run the annotated function if it is called in the CI environment.

It is important to put it before the #[heim_derive::test] attribute, like that:

#[heim_derive::skip_ci]
#[heim_derive::test]
async fn test_foo() {}

Supported CI:

  • Azure Pipelines