[arch-commits] Commit in python-pytest-html/trunk (PKGBUILD)

David Runge dvzrv at archlinux.org
Sun Dec 6 18:05:33 UTC 2020


    Date: Sunday, December 6, 2020 @ 18:05:33
  Author: dvzrv
Revision: 771060

upgpkg: python-pytest-html 3.1.0-1: Upgrade to 3.1.0.

Change check() to install the package to a test location,
from which to test.

Modified:
  python-pytest-html/trunk/PKGBUILD

----------+
 PKGBUILD |   24 +++++++++++++++++-------
 1 file changed, 17 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-12-06 17:47:19 UTC (rev 771059)
+++ PKGBUILD	2020-12-06 18:05:33 UTC (rev 771060)
@@ -2,7 +2,7 @@
 
 _name=pytest-html
 pkgname=python-pytest-html
-pkgver=3.0.0
+pkgver=3.1.0
 pkgrel=1
 pkgdesc="Plugin for generating HTML reports for pytest results"
 arch=('any')
@@ -13,7 +13,8 @@
 checkdepends=('python-ansi2html' 'python-pytest-mock'
 'python-pytest-rerunfailures' 'python-pytest-xdist')
 source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
-sha512sums=('1db78a0ec3114da9b2268fab37935349063d67f18a473939979499ddf8b1b228b9c879ce1fe2c1740166c63be56edbc4f8de8e9878790954426d344525dbc55f')
+sha512sums=('161071f92b271970b47260e7f3ac8eed8c0a2329302b1ccee4d8eff25d9a2221b652ed193bd6bab3529d7736d1906cf3e229108868f6ec8f09f891d36e319bee')
+b2sums=('d6da0588187727e4b1c4b6ba1ffe41154471140ae441f47094f5276303b463c278e6c95f193959e4753d0deede198d053a39ade78a0dfeb3925fb7b0e329314a')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
@@ -26,15 +27,24 @@
 
 check() {
   cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  pytest -v -k 'not test_environment_xdist and not test_css'
+  local _python_version="$(python -c 'import sys; print(".".join(map(str, sys.version_info[:2])))')"
+  local _test_dir='test_dir'
+
+  # install into test location
+  mkdir -vp "${_test_dir}"
+  python setup.py install --skip-build \
+    --optimize=1 \
+    --root="${_test_dir}"
+
+  export PYTHONPATH="${PWD}/${_test_dir}/usr/lib/python${_python_version}/site-packages/:${PYTHONPATH}"
+  export PATH="${PWD}/test_dir/usr/bin:${PATH}"
+  pytest -v
 }
 
 package() {
   cd "$pkgname-$pkgver"
   python setup.py install --skip-build \
-    --optimize=1 \
-    --prefix=/usr \
-    --root="${pkgdir}"
+                          --optimize=1 \
+                          --root="${pkgdir}"
   install -vDm 644 {CHANGES,README}.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
 }



More information about the arch-commits mailing list