Skip to content
Snippets Groups Projects
Commit f365324c authored by Stefano Rivera's avatar Stefano Rivera
Browse files

Use virtualenvs in testfe-setuptools autopgktest, fixing a regression now that...

Use virtualenvs in testfe-setuptools autopgktest, fixing a regression now that pip refuses --user installs. (Closes: #1031757)
parent 5914b98c
No related branches found
No related tags found
No related merge requests found
python-formencode (2.0.1-2) UNRELEASED; urgency=medium
* Use virtualenvs in testfe-setuptools autopgktest, fixing a regression now
that pip refuses --user installs. (Closes: #1031757)
-- Stefano Rivera <stefanor@debian.org> Fri, 24 Feb 2023 16:20:19 -0400
python-formencode (2.0.1-1) unstable; urgency=low
[ Neil Muller ]
......
......@@ -2,4 +2,4 @@ Tests: testfe
Depends: python3-formencode, python3-all
Tests: testfe-setuptools
Depends: python3-formencode, python3-setuptools, python3-all, python3-pip
Depends: python3-formencode, python3-all, python3-virtualenv
......@@ -80,9 +80,7 @@ touch __init__.py
cd $WORKDIR
for py in $(py3versions -s) python3; do
$py -m pip install --user --no-warn-script-location ./mypkg
cd ~/.local/bin
./testfe
cd $WORKDIR
$py -m pip uninstall -y testlib
virtualenv -p $py testve
testve/bin/python -m pip install --no-warn-script-location ./mypkg
testve/bin/testfe
done
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