diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-04-09 11:49:36 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:32 +0100 |
commit | bbf83fd988ca3cf9dae7d2b542a11a7c942b1702 (patch) | |
tree | af91902ea2f1d9132b89a246ac5bb053e956d6bf /bitbake/lib/bb/__init__.py | |
parent | 8306ba50db13eb3adcc0161e120c53c3f7aefe7b (diff) | |
download | openembedded-core-bbf83fd988ca3cf9dae7d2b542a11a7c942b1702.tar.gz openembedded-core-bbf83fd988ca3cf9dae7d2b542a11a7c942b1702.tar.bz2 openembedded-core-bbf83fd988ca3cf9dae7d2b542a11a7c942b1702.zip |
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.
(Bitbake rev: 3a11c2807972bbbddffde2fa67fc380d159da467)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/__init__.py')
-rw-r--r-- | bitbake/lib/bb/__init__.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py index 61973c38a9..3ba6beb2c1 100644 --- a/bitbake/lib/bb/__init__.py +++ b/bitbake/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) |