Skip to content
Snippets Groups Projects
Commit 2ddc46db authored by Celeste's avatar Celeste Committed by Andy Postnikov
Browse files

community/py3-lz4: fix $PYTHONPATH in check()

parent bf10480d
No related branches found
No related tags found
1 merge request!53893community/py3-lz4: fix $PYTHONPATH in check()
Pipeline #188803 skipped
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment