Python sys 模块,_called_from_test() 实例源码

我们从Python开源项目中,提取了以下12个代码示例,用于说明如何使用sys._called_from_test()

项目:gloss    作者:openhealthcare    | 项目源码 | 文件源码
def pytest_configure(config):
    import sys
    sys._called_from_test = True
项目:EMFT    作者:132nd-etcher    | 项目源码 | 文件源码
def pytest_configure(config):
    sys._called_from_test = True


# noinspection PyUnusedLocal,SpellCheckingInspection
项目:statsnba-playbyplay    作者:ethanluoyc    | 项目源码 | 文件源码
def pytest_configure(config):
    sys._called_from_test = True
项目:do    作者:rapydo    | 项目源码 | 文件源码
def pytest_configure(config):
    import sys
    sys._called_from_test = True
项目:ece5745-sec-pymtl-cl    作者:cornell-ece5745    | 项目源码 | 文件源码
def pytest_configure(config):
  import sys
  sys._called_from_test = True
项目:spiking-mlp    作者:petered    | 项目源码 | 文件源码
def pytest_configure(config):
    import sys
    sys._called_from_test = True
项目:spiking-mlp    作者:petered    | 项目源码 | 文件源码
def pytest_unconfigure(config):
    if hasattr(sys, '_called_from_test'):
        del sys._called_from_test
项目:artemis    作者:QUVA-Lab    | 项目源码 | 文件源码
def is_test_mode():
    return _TEST_MODE or (hasattr(sys, '_called_from_test') and sys._called_from_test)
项目:artemis    作者:QUVA-Lab    | 项目源码 | 文件源码
def pytest_configure(config):
    sys._called_from_test = True
    if os.environ.get('TRAVIS'):
        import matplotlib
        matplotlib.use('Agg')
项目:artemis    作者:QUVA-Lab    | 项目源码 | 文件源码
def pytest_unconfigure(config):
    if hasattr(sys, '_called_from_test'):
        del sys._called_from_test
项目:mindpark    作者:danijar    | 项目源码 | 文件源码
def pytest_configure(config):
    sys._called_from_test = True
项目:how-was-your-day    作者:showerbugs    | 项目源码 | 文件源码
def pytest_configure(config):
    sys._called_from_test = True