summaryrefslogtreecommitdiff
path: root/dev-python/pytest-services
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-05-22 12:40:46 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-05-22 12:40:46 +0000
commitcbdd4d6052ae6da75e7dca630468df2998c99bc4 (patch)
treee26bd94c114ff574769908e328fb0aee15c593a9 /dev-python/pytest-services
parent0578f885cd0733b8f61a5535465c63904d9ad94e (diff)
downloadbaldeagleos-repo-cbdd4d6052ae6da75e7dca630468df2998c99bc4.tar.gz
baldeagleos-repo-cbdd4d6052ae6da75e7dca630468df2998c99bc4.tar.xz
baldeagleos-repo-cbdd4d6052ae6da75e7dca630468df2998c99bc4.zip
Adding metadata
Diffstat (limited to 'dev-python/pytest-services')
-rw-r--r--dev-python/pytest-services/pytest-services-2.2.1-r1.ebuild50
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-python/pytest-services/pytest-services-2.2.1-r1.ebuild b/dev-python/pytest-services/pytest-services-2.2.1-r1.ebuild
new file mode 100644
index 000000000000..a0522e17a57f
--- /dev/null
+++ b/dev-python/pytest-services/pytest-services-2.2.1-r1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{7,8,9,10} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Collection of fixtures and utility functions to run service processes for pytest"
+HOMEPAGE="
+ https://github.com/pytest-dev/pytest-services/
+ https://pypi.org/project/pytest-services/
+"
+SRC_URI="
+ https://github.com/pytest-dev/pytest-services/archive/${PV}.tar.gz
+ -> ${P}.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+ dev-python/requests[${PYTHON_USEDEP}]
+ dev-python/psutil[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}]
+ dev-python/zc-lockfile[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/pylibmc[${PYTHON_USEDEP}]
+ x11-base/xorg-server[xvfb]
+ net-misc/memcached
+ !dev-python/pytest-salt
+ )
+"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+ "${FILESDIR}/pytest-services-2.0.1-no-mysql.patch"
+ "${FILESDIR}/pytest-services-2.0.1-lockdir.patch"
+)
+
+python_test() {
+ epytest -p no:xvfb
+}