Replies: 1 comment 2 replies
-
Probably because this subpackage is not listed in |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have some difficulties with
mock
package.I'm trying to package it as rpm and Solaris IPS packages so I'm doing all from non-root account.
Part of every package build procedure is execution of the test suite if it is only possible.
And here is the problem. Looks like setuptools
setup.py build
do not prepares in build/lib mock/tests content and thansetup.py install --root </install/prefix>
is not installing those files as well so by this pytest started with $PYTHONPATH pointing to python site lib/arch directories inside</install/prefix>
fails because is not able to findmock.tests
files.Can someone help a bit and have look on https://github.com/testing-cabal/mock and tell why in this case what is specified in setup.{py,cfg} is not preparing in buil/lib content of the mock/tests?
Beta Was this translation helpful? Give feedback.
All reactions