diff options
author | Rafael Baboni Dominiquini | 2024-12-26 12:19:40 -0300 |
---|---|---|
committer | Rafael Baboni Dominiquini | 2024-12-26 12:19:40 -0300 |
commit | 1f89963e321c466dc83b6d721dd846a0a16c3213 (patch) | |
tree | 4f1b2b6dc7c1f7b2a29fdc8e58bc27f2ba6644d4 | |
parent | 404989bfce5d81d343117aa464797dbbd68f9cf4 (diff) | |
download | aur-1f89963e321c466dc83b6d721dd846a0a16c3213.tar.gz |
Fixing tests
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 8 |
2 files changed, 5 insertions, 5 deletions
@@ -1,7 +1,7 @@ pkgbase = python-click-option-group pkgdesc = Option groups missing in Click pkgver = 0.5.6 - pkgrel = 2 + pkgrel = 3 url = https://github.com/click-contrib/click-option-group arch = any license = BSD @@ -4,7 +4,7 @@ _name=click-option-group pkgname=python-click-option-group pkgver=0.5.6 -pkgrel=2 +pkgrel=3 pkgdesc="Option groups missing in Click" arch=(any) url="https://github.com/click-contrib/click-option-group" @@ -33,9 +33,9 @@ build() { check() { cd $_name-$pkgver - #local _site_packages=$(python -c "import site; print(site.getsitepackages()[0])") - #python -m installer --destdir=test_dir dist/*.whl - #export PYTHONPATH="test_dir/$_site_packages:$PYTHONPATH" + local _site_packages=$(python -c "import site; print(site.getsitepackages()[0])") + python -m installer --destdir=test_dir dist/*.whl + export PYTHONPATH="test_dir/$_site_packages:$PYTHONPATH" pytest -vv } |