From 2ddc46db6c49c2aae67998c0b79cf7f717de8b8c Mon Sep 17 00:00:00 2001 From: Celeste <20312-Celeste@users.gitlab.alpinelinux.org> Date: Mon, 23 Oct 2023 07:26:11 +0000 Subject: [PATCH] community/py3-lz4: fix $PYTHONPATH in check() --- community/py3-lz4/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/py3-lz4/APKBUILD b/community/py3-lz4/APKBUILD index 06b076f3b0d4..d024add812f7 100644 --- a/community/py3-lz4/APKBUILD +++ b/community/py3-lz4/APKBUILD @@ -51,7 +51,7 @@ build() { check() { python3 -m venv --clear --without-pip --system-site-packages .testenv .testenv/bin/python3 -m installer .dist/*.whl - export PYTHONPATH="$(echo testenv/lib/python3*/site-packages/):$PWD" + export PYTHONPATH="$(echo .testenv/lib/python3*/site-packages/):$PWD" .testenv/bin/python3 -P -m pytest tests/block tests/frame } -- GitLab