~coreygoldberg/+junk/isd-app-probes

« back to all changes in this revision

Viewing changes to isdprobes-run.py

  • Committer: Corey Goldberg
  • Date: 2012-06-24 15:11:20 UTC
  • Revision ID: cgoldberg@gmail.com-20120624151120-e5jlakvi7casdihs
fixed imports

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
import getopt
17
17
import sys
18
18
 
19
 
from isdprobes.runner import run
20
 
from isdprobes.tests import test
 
19
#import isdprobes
 
20
#import isdprobes.runner as runner
 
21
#import isdprobes.tests as tests
 
22
 
 
23
#import isdprobes.tests
 
24
from isdprobes import runner
 
25
from isdprobes import tests
 
26
 
 
27
#from isdprobes.runner import run
 
28
#from isdprobes.tests import test
21
29
 
22
30
 
23
31
 
36
44
            print __doc__
37
45
            sys.exit()
38
46
        if opt in ('-r', '--run'):
39
 
            run()
 
47
            runner.run()
40
48
        if opt in ('-t', '--test'):
41
 
            test()
 
49
            tests.test()
42
50
 
43
51
            
44
52