diff options
author | Vu Tran <vu.tran@windriver.com> | 2014-07-09 17:42:53 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-07-17 00:14:05 -0400 |
commit | 101462906de023d9a55800979986a509fa7a9347 (patch) | |
tree | f9afa3779dba470bced5ca46a06d9ddfa8a447c9 /meta-openstack/recipes-devtools/python | |
parent | fc7d564fb43d3768c6ad14a3b8f116142705e733 (diff) | |
download | meta-cloud-services-101462906de023d9a55800979986a509fa7a9347.tar.gz |
add python-oslotest bb 1.0.0 file
OpenStack Rally requires oslotest.
Signed-off-by: Vu Tran <vu.tran@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python')
-rw-r--r-- | meta-openstack/recipes-devtools/python/python-oslotest_1.0.0.bb | 29 |
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 @@ | |||
1 | DESCRIPTION = "OpenStack test framework and test fixtures. \ | ||
2 | The oslotest package can be cross-tested against its consuming projects to ensure \ | ||
3 | that no changes to the library break the tests in those other projects." | ||
4 | HOMEPAGE = "https://pypi.python.org/pypi/oslotest" | ||
5 | SECTION = "devel/python" | ||
6 | LICENSE = "BSD" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" | ||
8 | |||
9 | PR = "r0" | ||
10 | SRCNAME = "oslotest" | ||
11 | |||
12 | SRC_URI = "https://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-1.0.0.tar.gz \ | ||
13 | " | ||
14 | |||
15 | SRC_URI[md5sum] = "1f7710e4d38b615990737f813704fd58" | ||
16 | SRC_URI[sha256sum] = "cf05f4ff0cbf84ad0b5d1bef7c46d719eaf4408107e65a32a4500cf707d1a1e7" | ||
17 | |||
18 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
19 | |||
20 | inherit setuptools | ||
21 | |||
22 | RDEPENDS_${PN} = "python-fixtures \ | ||
23 | python-subunit \ | ||
24 | python-testrepository \ | ||
25 | python-testscenarios \ | ||
26 | python-testtools \ | ||
27 | python-mock \ | ||
28 | python-mox \ | ||
29 | " | ||