summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-oslotest_1.6.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-oslotest_1.6.0.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-oslotest_1.6.0.bb29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-oslotest_1.6.0.bb b/meta-openstack/recipes-devtools/python/python-oslotest_1.6.0.bb
new file mode 100644
index 0000000..30cff23
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-oslotest_1.6.0.bb
@@ -0,0 +1,29 @@
1DESCRIPTION = "OpenStack test framework and test fixtures. \
2The oslotest package can be cross-tested against its consuming projects to ensure \
3that no changes to the library break the tests in those other projects."
4HOMEPAGE = "https://pypi.python.org/pypi/oslotest"
5SECTION = "devel/python"
6LICENSE = "BSD"
7LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
8
9SRCNAME = "oslotest"
10
11SRC_URI = "https://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
12"
13
14SRC_URI[md5sum] = "54ba62e2e13619616ddce772fb267106"
15SRC_URI[sha256sum] = "cb65b53b753375b669dcdb4717c362a205d19e3d16ca26310c0916cfd359354c"
16
17S = "${WORKDIR}/${SRCNAME}-${PV}"
18
19inherit setuptools
20
21RDEPENDS_${PN} = "python-fixtures \
22 python-subunit \
23 python-testrepository \
24 python-testscenarios \
25 python-testtools \
26 python-mock \
27 python-mox \
28 bash \
29"