コード例 #1
0
ファイル: runtests.py プロジェクト: noisyoscillator/sdepy
def run_full():
    assert not issource
    res = test('full', doctests=True)
    return res.errors + res.failures
コード例 #2
0
def run(*args, **kws):
    """
    Run tests with given options
    """
    print_info()
    return int(not test(*args, **kws))
コード例 #3
0
ファイル: runtests.py プロジェクト: noisyoscillator/sdepy
 def run_tests(*var, **args):
     res.append(test(*var, **args))
コード例 #4
0
ファイル: runtests.py プロジェクト: noisyoscillator/sdepy
def run_fast():
    assert not issource
    res = test()
    return res.errors + res.failures
コード例 #5
0
ファイル: runtests.py プロジェクト: roarkemc/sdepy
def run_full():
    """
    Run full tests including tests marked 'slow' and doctests
    """
    res = test('full', doctests=True)
    return len(res.errors + res.failures)
コード例 #6
0
ファイル: runtests.py プロジェクト: roarkemc/sdepy
def run_fast():
    """
    Run fast tests
    """
    res = test()
    return len(res.errors + res.failures)
コード例 #7
0
ファイル: runtests.py プロジェクト: matteoettam09/sdepy
 def run_tests(*var, **args):
     res.append(int(not test(*var, **args)))
コード例 #8
0
ファイル: runtests.py プロジェクト: matteoettam09/sdepy
def run_full():
    """
    Run full tests including tests marked 'slow' and doctests
    """
    print_info()
    return int(not test('full', doctests=True))
コード例 #9
0
ファイル: runtests.py プロジェクト: matteoettam09/sdepy
def run_fast():
    """
    Run fast tests
    """
    print_info()
    return int(not test())