[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/feast-dev/feast/pytorch-template/sdk/python/feast/flags_helper.py [Back]  [Original]

import os

ENV_FLAG_IS_TEST = "IS_TEST"


def _env_flag_enabled(name: str) -> bool:
    return os.getenv(name, default="False") == "True"


def is_test() -> bool:
    return _env_flag_enabled(ENV_FLAG_IS_TEST)

Web Proxy Viewer  |  New URL  |  Original Page