aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-pytest-regtest
diff options
context:
space:
mode:
authorMarian Buschsieweke <marian.buschsieweke@ovgu.de>2019-09-06 09:50:02 +0200
committerLeo <thinkabit.ukim@gmail.com>2019-09-06 05:56:24 -0300
commit0b602d4fc279d7833fb3ca5a20fb5875209cb02b (patch)
tree8ddefad53450d7be5b31b98f56798693f25c921b /testing/py3-pytest-regtest
parentf088db62855c4f2fe88a3e167ec52b29fc0c9905 (diff)
downloadaports-0b602d4fc279d7833fb3ca5a20fb5875209cb02b.tar.bz2
aports-0b602d4fc279d7833fb3ca5a20fb5875209cb02b.tar.xz
testing/py3-pytest-regtest: new aport
pytest-regtest is a pytest-plugin for implementing regression tests https://gitlab.com/uweschmitt/pytest-regtest
Diffstat (limited to 'testing/py3-pytest-regtest')
-rw-r--r--testing/py3-pytest-regtest/APKBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/py3-pytest-regtest/APKBUILD b/testing/py3-pytest-regtest/APKBUILD
new file mode 100644
index 0000000000..9a8baa44f4
--- /dev/null
+++ b/testing/py3-pytest-regtest/APKBUILD
@@ -0,0 +1,31 @@
+# Maintainer: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
+pkgname=py3-pytest-regtest
+_pyname=pytest-regtest
+pkgver=1.4.2
+pkgrel=0
+pkgdesc="pytest-regtest is a pytest-plugin for implementing regression tests"
+url="https://gitlab.com/uweschmitt/pytest-regtest"
+arch="noarch"
+license="MIT"
+depends="py3-pytest"
+makedepends="py3-setuptools"
+checkdepends="py3-pexpect py3-tox"
+source="https://files.pythonhosted.org/packages/source/p/$_pyname/$_pyname-$pkgver.tar.gz"
+builddir="$srcdir/$_pyname-$pkgver"
+
+build() {
+ python3 setup.py build
+}
+
+check() {
+ python3 setup.py test
+}
+
+package() {
+ python3 setup.py install \
+ --prefix=/usr \
+ --root="$pkgdir"
+
+}
+
+sha512sums="b93c8b5c68abd8b78e8bd1930fb638ffb90bb3f6fef9b99f7da67c974d1678239ae7e80852a6ed6034abb8a043180d2eacb4dbabb43a13ca74ddb0af8f281206 pytest-regtest-1.4.2.tar.gz"