"python ./setup.py test" rebuilds packages #657
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#657
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
If you build with
python ./setup.py build
, it will automatically build required libraries such as pycryptopp. On Zandr's NAS device, building pycryptopp takes about an hour. Then if you test withpython ./setup.py test
, it will rebuild pycryptopp again. I investigated and I see that this is because the initialbuild
puts the resulting package into./support/lib/python2.5/site-packages
, but thetest
puts it into the current working directory. So a good fix would be to configure it so that thetest
step uses./support/
as its "target directory".You can work-around this issue by installing with
python ./setup.py install
, which will copy all libraries such as pycryptopp into your system directory (e.g./usr/lib/python2.5/site-packages
, or by manually prepending thetest
step withPYTHONPATH=./support/lib/python2.5/site-packages
.(Note that if you install with
python ./setup.py install
then it is very easy to uninstall. All you do is/bin/rm -rf
the one item that got added into your/usr/lib/python2.5/site-packages/
directory for each library that got installed. For example, for pycryptopp that item is namedpycryptopp-$VERSION_NUMBER-py2.5.egg
.)I added a ticket for
setuptools_trial
for a way that it could help with this: http://allmydata.org/trac/setuptools_trial/ticket/6 # accept a --prefix option for where to put install requirements (or to find them)ah, this matches what I was experiencing on OS-X last week.
I guess I'm not surprised that the setuptools 'test' target is doing a compile (I can see it helping people who forget/decline to do a 'build' first, and I can imagine the setuptools folks believing that their is-a-library-already-installed logic working fast enough and correctly enough to avoid repeating a lot of work on each test pass). What I am surprised about is that it appears to compile+copy things into the working directory (which I assume is the root of the source tree). I would expect it to compile+copy things into build/lib, and then add that directory to PYTHONPATH before running the tests. Isn't that what build/ is for?
Thanks for the note about how easy it is to manually uninstall things that you've allowed setuptools to write to system directories.. that makes me feel like I have more control over my system if I had to resort to 'sudo setup.py install'.
This may be related to #717 (unnecessary rebuild of dependencies when tahoe-deps/ is present).
It looks like this may be related to http://bugs.python.org/setuptools/issue65 (setuptools bug,inconsistent replacement of eggs when installing from file:// urls.) which is fixed in setuptools-0.6c10 prerelease. setuptools 65 is related to http://bugs.python.org/setuptools/issue17 (easy_install will install a package that is already there) and http://bugs.python.org/setuptools/issue20 (package required at build time seems to be not fully present at install time?).
Maybe someone (cgalvan?) could test this issue with the setuptools v0.6c10.
We've removed the
setup.py test
command (which was an alias for "build a bunch of stuff and then runtrial
"). And we've switched totox
for running unit tests, where ourtox.ini
just runstrial
in its virtualenv.So I think we can close this out now.