Keith Goodman wrote: > I see a lot of 'No test file found' warnings when running > numpy.test(). What does that mean?
The test collector tries to find a test module for every actual module. So numpy/dual.py would correspond to numpy/tests/test_dual.py . A lot of modules don't need to be tested because they don't contain real code (__init__.py's, info.py's, __version__.py's) or because their code is tested by other functions (most of the extension modules are tested by testing the Python modules where the functions are exposed). And of course, some modules which should have test coverage don't. Unfortunately, it's difficult to extract those from all of the false positives. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth." -- Umberto Eco _______________________________________________ Numpy-discussion mailing list Numpy-discussion@scipy.org http://projects.scipy.org/mailman/listinfo/numpy-discussion