[][src]Attribute Macro heim_derive::skip_ci

#[skip_ci]

Used for #[runtime::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 #[runtime::test] attribute, like that:

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

Supported CI:

  • Azure Pipelines
  • Cirrus CI