summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-openstack-nose_0.11.bb
diff options
context:
space:
mode:
authorKeith Holman <Keith.Holman@windriver.com>2014-06-05 14:31:42 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-06-09 10:49:38 -0400
commit4e791aa8405287442732db2198a83cc3fab85a1a (patch)
tree85929f9ac9c36e24786aafc0a4e5f77b87123ff4 /meta-openstack/recipes-devtools/python/python-openstack-nose_0.11.bb
parent4f518df6a55377938e05a067ae54294e2e92c50d (diff)
downloadmeta-cloud-services-4e791aa8405287442732db2198a83cc3fab85a1a.tar.gz
openstack-nose: plugin for openstack style output
Openstack components provide a run_tests.sh script for running unit tests. Some of these tests expect the openstack-nose plugin to be installed. This fix provides a recipe for the building that plugin in order to allow the various run_tests.sh scripts to run. Signed-off-by: Keith Holman <Keith.Holman@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-openstack-nose_0.11.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-openstack-nose_0.11.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-openstack-nose_0.11.bb b/meta-openstack/recipes-devtools/python/python-openstack-nose_0.11.bb
new file mode 100644
index 0000000..eaa4c0c
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-openstack-nose_0.11.bb
@@ -0,0 +1,32 @@
1#
2# Copyright (C) 2014 Wind River Systems, Inc.
3#
4DESCRIPTION = "Openstack style output for nosetests"
5HOMEPAGE = "https://github.com/jkoelker/openstack-nose"
6SECTION = "devel/python"
7LICENSE = "Apache-2.0"
8LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
9
10PR = "r0"
11SRCNAME = "openstack.nose_plugin"
12
13SRC_URI = "http://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
14 "
15
16SRC_URI[md5sum] = "0c6547f413db8c66921b110f78132aac"
17SRC_URI[sha256sum] = "a28d44dc23de8164d7893da7020404c73c4325b46d5507911f0257c15f613b4f"
18
19S = "${WORKDIR}/${SRCNAME}-${PV}"
20
21inherit setuptools
22
23DEPENDS += " \
24 python-pip \
25 "
26
27RDEPENDS_${PN} += " \
28 python-nose \
29 python-colorama \
30 python-termcolor \
31 "
32