https://github.com/robotframework/RIDE
Raw File
Tip revision: e8cd9fef41c3e34ad66d402cc48827e440e22885 authored by Hélio Guilherme on 25 February 2016, 22:26:39 UTC
Remove ProgressDialog (when loading last files/path) because it crashes in wxPython 3 in Windows.
Tip revision: e8cd9fe
process_test_scripts.py
import sys
import time


def output(sleep=0.1):
    print 'start'
    for i in range(2):
        print 'running iteration %d' % i * 500
        time.sleep(float(sleep))
    print 'done'


def count_args(*args):
    print len(args)

def stderr():
    sys.stderr.write('This is stderr\n')

globals()[sys.argv[1]](*sys.argv[2:])

back to top