summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-devtools/python')
-rw-r--r--meta-openstack/recipes-devtools/python/python-oslotest_1.0.0.bb29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-oslotest_1.0.0.bb b/meta-openstack/recipes-devtools/python/python-oslotest_1.0.0.bb
new file mode 100644
index 0000000..edb37d8
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-oslotest_1.0.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
9PR = "r0"
10SRCNAME = "oslotest"
11
12SRC_URI = "https://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-1.0.0.tar.gz \
13"
14
15SRC_URI[md5sum] = "1f7710e4d38b615990737f813704fd58"
16SRC_URI[sha256sum] = "cf05f4ff0cbf84ad0b5d1bef7c46d719eaf4408107e65a32a4500cf707d1a1e7"
17
18S = "${WORKDIR}/${SRCNAME}-${PV}"
19
20inherit setuptools
21
22RDEPENDS_${PN} = "python-fixtures \
23 python-subunit \
24 python-testrepository \
25 python-testscenarios \
26 python-testtools \
27 python-mock \
28 python-mox \
29"