Example #1
0
 def run(self):
     from test import run_tests
     run_tests.main()
 def run(self):
     from test.run_tests import main
     if not main().wasSuccessful():
         raise SystemExit(1)
Example #3
0
 def run(self):
     from test import run_tests
     run_tests.main()
Example #4
0
    def run(self):
        os.environ["PATH"] += os.pathsep + "./bin"
        from test import run_tests

        run_tests.main()
Example #5
0
 def run(self):
     from test.run_tests import main
     if not main().wasSuccessful():
         raise SystemExit(1)