INNER CODE UNIT · Python
is_test_env
apple/ml-cvnets · common/__init__.py:34
def is_test_env() -> bool:
return "PYTEST_CURRENT_TEST" in os.environ
def if_test_env(then: Any, otherwise: Any) -> Any:
return then if "PYTEST_CURRENT_TEST" in os.environ else otherwise