summaryrefslogtreecommitdiffstats
path: root/lib/bb/__init__.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-09 11:49:36 -0700
committerChris Larson <chris_larson@mentor.com>2010-04-09 12:45:38 -0700
commit3a11c2807972bbbddffde2fa67fc380d159da467 (patch)
treeb33504d2651bcfd90dbd7c763f2ec1399d38cb3b /lib/bb/__init__.py
parent1e83e9200fb5d477ba6fc0aa722dab0904412351 (diff)
downloadbitbake-3a11c2807972bbbddffde2fa67fc380d159da467.tar.gz
Drop doctest, as we aren't utilizing it
We should add back in some proper unit testing. Doctest is rather limited, and we haven't actually made use of it since the original implementation of the datastore when the project started, as far as I'm aware. Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/__init__.py')
-rw-r--r--lib/bb/__init__.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/bb/__init__.py b/lib/bb/__init__.py
index 61973c38a..3ba6beb2c 100644
--- a/lib/bb/__init__.py
+++ b/lib/bb/__init__.py
@@ -86,9 +86,3 @@ from bb.fetch import MalformedUrl, encodeurl, decodeurl
from bb.data import VarExpandError
from bb.utils import mkdirhier, movefile, copyfile, which
from bb.utils import vercmp_string as vercmp
-
-
-if __name__ == "__main__":
- import doctest, bb
- bb.msg.set_debug_level(0)
- doctest.testmod(bb)