Skip to content

Instantly share code, notes, and snippets.

@harlowja
Created August 31, 2014 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harlowja/2c3dfbd818302672193f to your computer and use it in GitHub Desktop.
Save harlowja/2c3dfbd818302672193f to your computer and use it in GitHub Desktop.
many runner
import sys
from pkg_resources import load_entry_point
import time
for i in range(0, 500):
print("===" * 3)
print("Run number %s" % (i + 1))
print("===" * 3)
c = load_entry_point('nose', 'console_scripts', 'nosetests')
p = c(exit=False)
time.sleep(1.5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment