I have installed a number of python modules into a common Linux directory that a number of people will be using via an NFS mount (yes I understand that there is a performance hit with this esp with python) I have been able to run the scipy.test('full') as the user that owns the NFS mount as well as root.
Is there a way that I can pass in an argument to the scipy.test() function that will tell it what dir to build the sc_* and linux227compiled_catalog.d* files in? ie scpipt.test('full', /tmp) so that any user who mounts this can run these tests and not have write access to the NFS mount?
Thanks in advance.