summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Smedstad2024-01-05 16:53:30 +0100
committerCarl Smedstad2024-01-05 16:53:30 +0100
commite7934f3419fbc6ad951cf8d5ef9dfd75d94382d9 (patch)
tree29935a507685593fa7b29618b1075b323fb88020
parent8b528c7ccd4a4475198fa905b62a5f7feb11c331 (diff)
downloadaur-e7934f3419fbc6ad951cf8d5ef9dfd75d94382d9.tar.gz
Publish version 0.9.3-2
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD9
2 files changed, 5 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ddb142d6bb2d..692a49dbe86d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -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
diff --git a/PKGBUILD b/PKGBUILD
index 029815e000b9..4e84f0cd41e8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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() {