[oe-commits] [openembedded-core] 20/26: python3-subunit: ensure runtime dependencies are present

git at git.openembedded.org git at git.openembedded.org
Thu Sep 26 20:39:16 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit e500a5b64389c4ca0d86b20805b353eea0c22e50
Author: Trevor Gamblin <trevor.gamblin at windriver.com>
AuthorDate: Mon Sep 23 11:52:38 2019 -0400

    python3-subunit: ensure runtime dependencies are present
    
    Without access to unittest, subunit cannot be imported in python3:
    
        root at 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 "<stdin>", line 1, in <module>
          File "/usr/lib/python3.7/site-packages/subunit/__init__.py", line 123, in <module>
            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.
    
    Signed-off-by: Trevor Gamblin <trevor.gamblin at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-devtools/python/python3-subunit_1.3.0.bb | 2 ++
 1 file changed, 2 insertions(+)

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 2ece445..55066e2 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"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list