Exemplo n.º 1
0
def create_progress(verbosity):
    global no_progress
    global prg
    global scenarios_ran

    if verbosity == 3:
        return

    scenarios_ran = 0
    if not no_progress:
        prg = ProgressBar("Pyccuracy - %s" % __version_string__, verbosity)
        prg.update(0, 'Running first test...')
Exemplo n.º 2
0
def create_progress(verbosity):
    global no_progress
    global prg
    global scenarios_ran

    if verbosity == 3:
        return

    scenarios_ran = 0
    if not no_progress:
        prg = ProgressBar("Pyccuracy - %s" % __version_string__, verbosity)
        prg.update(0, 'Running first test...')
def create_progress(verbosity):
    global no_progress
    global prg
    if not no_progress:
        prg = ProgressBar("Pyccuracy - %s" % __version_string__, verbosity)
        prg.update(0, 'Running first test...')