diff options
author | Carl Smedstad | 2024-01-05 16:53:30 +0100 |
---|---|---|
committer | Carl Smedstad | 2024-01-05 16:53:30 +0100 |
commit | e7934f3419fbc6ad951cf8d5ef9dfd75d94382d9 (patch) | |
tree | 29935a507685593fa7b29618b1075b323fb88020 | |
parent | 8b528c7ccd4a4475198fa905b62a5f7feb11c331 (diff) | |
download | aur-e7934f3419fbc6ad951cf8d5ef9dfd75d94382d9.tar.gz |
Publish version 0.9.3-2
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 9 |
2 files changed, 5 insertions, 6 deletions
@@ -1,7 +1,7 @@ pkgbase = python-picologging pkgdesc = An optimized logging library for Python pkgver = 0.9.3 - pkgrel = 1 + pkgrel = 2 url = https://github.com/microsoft/picologging arch = x86_64 license = MIT @@ -3,7 +3,7 @@ pkgname=python-picologging _name=${pkgname#python-} pkgver=0.9.3 -pkgrel=1 +pkgrel=2 pkgdesc="An optimized logging library for Python" arch=(x86_64) url="https://github.com/microsoft/picologging" @@ -59,10 +59,9 @@ check() { _site_packages=$(python -c "import site; print(site.getsitepackages()[0])") python -m installer --destdir=tmp_install dist/*.whl - # Disable leaking test - not sure how to fix. - PYTHONPATH="$PWD/tmp_install/$_site_packages:$PYTHONPATH" \ - python -m pytest \ - -k "not test_nested_frame_stack" + export PYTHONPATH="$PWD/tmp_install/$_site_packages:$PYTHONPATH" + python -m pytest \ + --deselect tests/unit/test_logger.py::test_nested_frame_stack } package() { |