When installing a pythonpackage/bundle we could got through the installed modules and for everything that has a __init__.py we could run "import xxx" to verify that it has all things it depends on.
This could be done in a python loop which has exception handling for failed loads and prints which modules fail and why.
I.e. instead of setting up one test env for each module, do them all in one swoop.
When installing a pythonpackage/bundle we could got through the installed modules and for everything that has a
__init__.pywe could run "import xxx" to verify that it has all things it depends on.This could be done in a python loop which has exception handling for failed loads and prints which modules fail and why.
I.e. instead of setting up one test env for each module, do them all in one swoop.