コード例 #1
0
ファイル: sge_test.py プロジェクト: bbockelm/gip
def main():
    """
    The main entry point for when sge_test is run in standalone mode.
    """
    cp = config("test_configs/pf-sge.conf")
    stream = streamHandler(cp)
    runTest(cp, TestSGEDynamic, stream, per_site=False)
コード例 #2
0
def main():
    """
    The main entry point for when pbs_test is run in standalone mode.
    """
    cp = config("test_configs/red.conf")
    stream = streamHandler(cp)
    runTest(cp, TestPbsDynamic, stream, per_site=False)
コード例 #3
0
ファイル: test_full.py プロジェクト: tiradani/gip
def main():
    """
    The main entry point for when the test is in standalone mode.
    """
    cp = config()
    stream = streamHandler(cp)
    runTest(cp, TestGipFull, stream, per_site=False)
コード例 #4
0
ファイル: osg_info_wrapper_test.py プロジェクト: bbockelm/gip
def main():
    """
    The main entry point for testing the osg-info-wrapper implementation.
    """
    cp = config()
    stream = streamHandler(cp)
    runTest(cp, TestOsgInfoWrapper, stream, per_site=False)
コード例 #5
0
def main():
    """
    The main entry point for when compare_bdii_cemon is run in standalone mode.
    """
    cp = config()
    stream = streamHandler(cp)
    runTest(cp, TestCompareData, stream)
コード例 #6
0
ファイル: compare_bdii_cemon.py プロジェクト: bbockelm/gip
def main():
    """
    The main entry point for when compare_bdii_cemon is run in standalone mode.
    """
    cp = config()
    stream = streamHandler(cp)
    runTest(cp, TestCompareData, stream)
コード例 #7
0
ファイル: osg_info_wrapper_test.py プロジェクト: tiradani/gip
def main():
    """
    The main entry point for testing the osg-info-wrapper implementation.
    """
    cp = config()
    stream = streamHandler(cp)
    runTest(cp, TestOsgInfoWrapper, stream, per_site=False)
コード例 #8
0
ファイル: condor_test.py プロジェクト: matyasselmeci/gip
def main():
    """
    The main entry point for when condor_test is run in standalone mode.
    """
    os.environ['GIP_TESTING'] = '1'
    cp = config()
    stream = streamHandler(cp)
    runTest(cp, TestCondorProvider, stream, per_site=False)
コード例 #9
0
ファイル: condor_test.py プロジェクト: tiradani/gip
def main():
    """
    The main entry point for when condor_test is run in standalone mode.
    """
    os.environ['GIP_TESTING'] = '1'
    cp = config()
    stream = streamHandler(cp)
    runTest(cp, TestCondorProvider, stream, per_site=False)
コード例 #10
0
ファイル: test_gip_common.py プロジェクト: tiradani/gip
def main():
    os.environ['GIP_TESTING'] = '1'
    cp = config()
    stream = streamHandler(cp)
    runTest(cp, TestGipCommon, stream, per_site=False)
コード例 #11
0
def main():
    os.environ["GIP_TESTING"] = "1"
    cp = config()
    stream = streamHandler(cp)
    runTest(cp, TestSiteTopology, stream, per_site=False)
コード例 #12
0
ファイル: test_se.py プロジェクト: bbockelm/gip
def main():
    os.environ['GIP_TESTING'] = '1'
    cp = config("test_configs/red-se-test.conf")
    stream = streamHandler(cp)
    runTest(cp, TestSEConfigs, stream, per_site=False)
コード例 #13
0
ファイル: test_software.py プロジェクト: bbockelm/gip
def main():
    cp = config("test_configs/red-software-test.conf")
    stream = streamHandler(cp)
    runTest(cp, TestSoftware, stream, per_site=False)
コード例 #14
0
ファイル: test_se.py プロジェクト: tiradani/gip
def main():
    os.environ['GIP_TESTING'] = '1'
    cp = config("test_configs/red-se-test.conf")
    stream = streamHandler(cp)
    runTest(cp, TestSEConfigs, stream, per_site=False)
コード例 #15
0
ファイル: test_cesebind.py プロジェクト: bbockelm/gip
def main():
    cp = config("test_configs/red.conf")
    stream = streamHandler(cp)
    runTest(cp, TestCESEBind, stream, per_site=False)
コード例 #16
0
def main():
    cp = config("test_configs/red-software-test.conf")
    stream = streamHandler(cp)
    runTest(cp, TestSoftware, stream, per_site=False)