[projects/template-specs] Add test case with local imports for pyproject
arekm
arekm at pld-linux.org
Sat Feb 8 18:45:17 CET 2025
commit c72470608f874112d9018a0d96ac037b8d6bc328
Author: Arkadiusz Miśkiewicz <arekm at maven.pl>
Date: Sat Feb 8 18:21:45 2025 +0100
Add test case with local imports for pyproject
python3.spec | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
---
diff --git a/python3.spec b/python3.spec
index 9f59df7..7922802 100644
--- a/python3.spec
+++ b/python3.spec
@@ -73,14 +73,22 @@ Dokumentacja API modułu Pythona %{module}.
%py3_build
# deprecated target, but sometimes still used: %{?with_tests:test}
+%if %{with tests}
+# use explicit plugins list for reliable builds (delete PYTEST_PLUGINS if empty)
+PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
+PYTEST_PLUGINS= \
+%{__python3} -m pytest tests
+%endif
+
# if pyproject.toml
%py3_build_pyproject
%if %{with tests}
+%{__python} -m zipfile -e build-3/*.whl build-3-test
# use explicit plugins list for reliable builds (delete PYTEST_PLUGINS if empty)
PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
PYTEST_PLUGINS= \
-%{__python3} -m pytest tests
+%{__python3} -m pytest -o pythonpath="$PWD/build-3-test" tests
%endif
%if %{with doc}
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/projects/template-specs.git/commitdiff/c72470608f874112d9018a0d96ac037b8d6bc328
More information about the pld-cvs-commit
mailing list