66 lines
2 KiB
Bash
66 lines
2 KiB
Bash
# 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 ~arm ~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/hacking[${PYTHON_USEDEP}]
|
|
>=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
|
|
dev-python/stestr[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests unittest
|
|
|
|
src_prepare() {
|
|
# Small subset of tests, which fail as result of not using specific
|
|
# testing environment. Others expect to run suite using stestr.
|
|
rm -r tempest/tests/lib/services/volume/v3/ || die
|
|
rm tempest/tests/test_list_tests.py || die
|
|
rm tempest/tests/lib/cmd/test_check_uuid.py || die
|
|
|
|
distutils-r1_src_prepare
|
|
}
|
|
|
|
python_test() {
|
|
distutils_install_for_testing
|
|
local -x OS_LOG_CAPTURE=1 OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 OS_TEST_TIMEOUT=320
|
|
eunittest -b -s tempest/tests -t .
|
|
}
|
|
|
|
src_install() {
|
|
distutils-r1_src_install
|
|
mv "${ED}/usr/etc" "${ED}/etc" || die
|
|
}
|