""" This test opens, builds and runs exemple project named "python".
Test succeeds if runtime's stdout behaves as expected
# allow module import from current test directory's parent
addImportPath(os.path.dirname(getBundlePath()))
# common test definitions module
from sikuliberemiz import *
app.waitForChangeAndIdleStdout()
app.waitPatternInStdout("Successfully built.", 10)
app.waitForChangeAndIdleStdout()
app.waitForChangeAndIdleStdout()
# wait 10 seconds for 10 Grumpfs
return app.waitPatternInStdout("Grumpf", 10, 10)
run_test(test, exemple="python")