diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2021-08-31 19:27:00 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2021-09-30 20:57:22 +0300 |
commit | 1bf29e059b6a95f281c5ac9838133c811ccee41d (patch) | |
tree | f9b20d7296496ebdceeeebfa670be0d1bdf5b119 /dev-python/tempest | |
parent | dev-python/oslo-concurrency: initial import (diff) | |
download | gentoo-1bf29e059b6a95f281c5ac9838133c811ccee41d.tar.gz gentoo-1bf29e059b6a95f281c5ac9838133c811ccee41d.tar.bz2 gentoo-1bf29e059b6a95f281c5ac9838133c811ccee41d.zip |
dev-python/tempest: initial import
Very much used testing usage facility for various openstack modules.
Test suite is broken for now in out venv conditions. Anyone who
manages to fix it - I will thank him.
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/tempest')
-rw-r--r-- | dev-python/tempest/Manifest | 1 | ||||
-rw-r--r-- | dev-python/tempest/metadata.xml | 13 | ||||
-rw-r--r-- | dev-python/tempest/tempest-29.0.0.ebuild | 55 |
3 files changed, 69 insertions, 0 deletions
diff --git a/dev-python/tempest/Manifest b/dev-python/tempest/Manifest new file mode 100644 index 000000000000..032f2b8a8731 --- /dev/null +++ b/dev-python/tempest/Manifest @@ -0,0 +1 @@ +DIST tempest-29.0.0.tar.gz 1090497 BLAKE2B 520e9de1fc326d9a64d7ab5e93887f3bd455d9c47d29e0774bfb362b1baff6c1dd13fc6df2c756f0e73dd2b33ecb02ea61abdca9ea1ae68474ba53271c6c9e93 SHA512 03049d6cf0e77bac1afafad88b5b0fd22abaa40ed24ffd2c0c989dbadf277c09d703f0d9f7b34f4f68a4b5858b061ea9586ef66e26749b0822af0e426d1b81a7 diff --git a/dev-python/tempest/metadata.xml b/dev-python/tempest/metadata.xml new file mode 100644 index 000000000000..bbcebc294603 --- /dev/null +++ b/dev-python/tempest/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>arthurzam@gentoo.org</email> + <name>Arthur Zamarin</name> + </maintainer> + <stabilize-allarches/> + <upstream> + <remote-id type="pypi">tempest</remote-id> + <remote-id type="github">openstack/tempest</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/tempest/tempest-29.0.0.ebuild b/dev-python/tempest/tempest-29.0.0.ebuild new file mode 100644 index 000000000000..d38e44c8e74b --- /dev/null +++ b/dev-python/tempest/tempest-29.0.0.ebuild @@ -0,0 +1,55 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..9} ) +inherit distutils-r1 + +DESCRIPTION="OpenStack Integration Testing" +HOMEPAGE="https://pypi.org/project/tempest/ https://docs.openstack.org/tempest/latest/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >dev-python/pbr-2.1.0[${PYTHON_USEDEP}] + >dev-python/cliff-2.9.0[${PYTHON_USEDEP}] + >=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}] + >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] + >=dev-python/paramiko-2.7.0[${PYTHON_USEDEP}] + >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}] + >=dev-python/oslo-concurrency-3.26.0[${PYTHON_USEDEP}] + >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}] + >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}] + >=dev-python/oslo-utils-4.7.0[${PYTHON_USEDEP}] + >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] + >=dev-python/pyyaml-3.12[${PYTHON_USEDEP}] + >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}] + >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}] + >=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}] + >=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}] + >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}] +" +BDEPEND=" + >dev-python/pbr-2.1.0[${PYTHON_USEDEP}] + test? ( + >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}] + dev-python/stestr[${PYTHON_USEDEP}] + ) +" + +# A lot of fails and error of InvalidCredentials +# The test suite expects full venv based on tox +# Please test the package using manual tox run +RESTRICT="test" + +distutils_enable_tests unittest + +python_test() { + distutils_install_for_testing --via-venv + local -x OS_LOG_CAPTURE=1 OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 OS_TEST_TIMEOUT=160 + eunittest -b +} |