David Cournapeau <[EMAIL PROTECTED]> writes: > Hi, > > I would like to implement some unit tests for the code I am > producing for scons support. As the numpy unit test is part of > distutils, there is a bootstrap problem, and I am not sure I understand > how current unit tests work in distutils: can anyone enlighten me on > this one ?
You'd probably have better luck running them separately from the numpy unittests. e.g, 'import numpy.distutils; numpy.distutils.test()'. Numpy will have to be installed to do so (as opposed to running from the source directory). Installing numpy before running the tests is good practice, anyways. -- |>|\/|< /------------------------------------------------------------------\ |David M. Cooke http://arbutus.physics.mcmaster.ca/dmc/ |[EMAIL PROTECTED] _______________________________________________ Numpy-discussion mailing list [email protected] http://projects.scipy.org/mailman/listinfo/numpy-discussion
