From bbe46d8ca333e1161378d9cdc935279fcb15a088 Mon Sep 17 00:00:00 2001 From: Trevor Gamblin Date: Mon, 23 Sep 2019 11:52:38 -0400 Subject: python3-subunit: ensure runtime dependencies are present Without access to unittest, subunit cannot be imported in python3: root@qemux86-64:~# python3 Python 3.7.4 (default, Sep 20 2019, 13:38:31) [GCC 9.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import subunit Traceback (most recent call last): File "", line 1, in File "/usr/lib/python3.7/site-packages/subunit/__init__.py", line 123, in import unittest ModuleNotFoundError: No module named 'unittest' >>> Adding python3-testtools to python3-subunit's RDEPENDS fixes the issue. This also implicitly provides the functionality found in the python3-extras module. (From OE-Core rev: 7ed7dc39e379c18f757e3c326ec1466c8ab27b41) Signed-off-by: Trevor Gamblin Signed-off-by: Richard Purdie --- meta/recipes-devtools/python/python3-subunit_1.3.0.bb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta/recipes-devtools/python/python3-subunit_1.3.0.bb') diff --git a/meta/recipes-devtools/python/python3-subunit_1.3.0.bb b/meta/recipes-devtools/python/python3-subunit_1.3.0.bb index 2ece4451df..55066e2d0f 100644 --- a/meta/recipes-devtools/python/python3-subunit_1.3.0.bb +++ b/meta/recipes-devtools/python/python3-subunit_1.3.0.bb @@ -1,2 +1,4 @@ inherit setuptools3 require python-subunit.inc + +RDEPENDS_${PN} = " python3-testtools" -- cgit v1.2.3-54-g00ecf