Re: [Numpy-discussion] running numpy tests

2008-08-05 Thread Andrew Dalke
On Aug 5, 2008, at 3:53 PM, Alan McIntyre wrote: > At the moment, bench() doesn't work. That's something I'll try to > look at this week, but from Friday until the 15th I'm going to be > driving most of the time and may not get as much done as I'd like. Thanks for the confirmation. The import sp

Re: [Numpy-discussion] running numpy tests

2008-08-05 Thread Alan McIntyre
At the moment, bench() doesn't work. That's something I'll try to look at this week, but from Friday until the 15th I'm going to be driving most of the time and may not get as much done as I'd like. On 8/5/08, Andrew Dalke <[EMAIL PROTECTED]> wrote: > On Aug 5, 2008, at 4:19 AM, Robert Kern wrote

Re: [Numpy-discussion] running numpy tests

2008-08-05 Thread Andrew Dalke
On Aug 5, 2008, at 4:19 AM, Robert Kern wrote: > def test(...): > ... > test.__test__ = False That did it - thanks! Does "import numpy; numpy.bench()" work for anyone? When I try it I get [josiah:~] dalke% python -c 'import numpy; numpy.bench()' ---

Re: [Numpy-discussion] running numpy tests

2008-08-04 Thread Robert Kern
On Mon, Aug 4, 2008 at 20:41, Andrew Dalke <[EMAIL PROTECTED]> wrote: > On Aug 5, 2008, at 2:00 AM, Robert Kern wrote: >> You have old stuff in your checkout/installation. Make sure you have >> deleted all of the *.pycs and directories which have been deleted in >> SVN. > > Now that I've fixed that

Re: [Numpy-discussion] running numpy tests

2008-08-04 Thread Andrew Dalke
On Aug 5, 2008, at 2:00 AM, Robert Kern wrote: > You have old stuff in your checkout/installation. Make sure you have > deleted all of the *.pycs and directories which have been deleted in > SVN. Now that I've fixed that, I can tell that I made a mistake related to the self-test code. I can't fig

Re: [Numpy-discussion] running numpy tests

2008-08-04 Thread Andrew Dalke
On Aug 5, 2008, at 2:00 AM, Robert Kern wrote: > You have old stuff in your checkout/installation. Make sure you have > deleted all of the *.pycs and directories which have been deleted in > SVN. I removed all .pyc files, wiped my installation directory, and it works now as I expect it to work.

Re: [Numpy-discussion] running numpy tests

2008-08-04 Thread Robert Kern
On Mon, Aug 4, 2008 at 18:15, Andrew Dalke <[EMAIL PROTECTED]> wrote: > I'm working on the patches for reducing the import overhead. I want > to make sure I don't break anything. I'm trying to figure out how to > run all of the tests. I expected, based on the following > > Alan McIntyre wrote: >

[Numpy-discussion] running numpy tests

2008-08-04 Thread Andrew Dalke
I'm working on the patches for reducing the import overhead. I want to make sure I don't break anything. I'm trying to figure out how to run all of the tests. I expected, based on the following Alan McIntyre wrote: > They actually do two different things; numpy.test() runs test for all > of