format-subunit: Remove import of unnecessary third party modules testtools and subunit.
authorJelmer Vernooij <jelmer@samba.org>
Sun, 14 Dec 2014 19:38:48 +0000 (19:38 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Fri, 6 Mar 2015 03:41:47 +0000 (04:41 +0100)
Change-Id: I3403ceacf8bbdf075c1c540081f7c3e82f4751bc
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
selftest/format-subunit

index 58321bf368a3c4f2d80ab53973cedcfca770d28e..2506f97c6450e2f86a2d72e93687b0bc9f1153fc 100755 (executable)
@@ -10,18 +10,13 @@ import signal
 import sys
 
 sys.path.insert(0, "bin/python")
-import samba
-samba.ensure_external_module("mimeparse", "mimeparse")
-samba.ensure_external_module("extras", "extras")
-samba.ensure_external_module("testtools", "testtools")
-samba.ensure_external_module("subunit", "subunit/python")
 
 import subunithelper
 
 parser = optparse.OptionParser("format-subunit [options]")
 parser.add_option("--verbose", action="store_true",
     help="Be verbose")
-parser.add_option("--immediate", action="store_true", 
+parser.add_option("--immediate", action="store_true",
     help="Show failures immediately, don't wait until test run has finished")
 parser.add_option("--prefix", type="string", default=".",
     help="Prefix to write summary to")