Function k8s_test_framework::lock

source ·
pub fn lock() -> MutexGuard<'static, ()>
Expand description

A shared lock to use commonly among the tests. The goal is to guarantee that only one test is executing concurrently, since tests use a shared resource - a k8s cluster - and will conflict with each other unless they’re executing sequentially.