[][src]Attribute Macro heim_derive::skip_ci

#[skip_ci]

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