Re: [Numpy-discussion] what to use in buildbot config for numpy testing

2011-09-08 Thread Jean-Baptiste Marquette
There is much more simple: the command nosetests numpy Of course, nosetests needs to be installed... Cheers JB Le 7 sept. 2011 à 23:44, Chris Kees a écrit : Hi Derek, Thanks! I forgot that python would exit with 0 even if numpy.test() fails. That could have taken a while to realize.

[Numpy-discussion] what to use in buildbot config for numpy testing

2011-09-07 Thread Chris Kees
Hi, Is there a recommended way to run the numpy test suite as a buildbot test? Just run ad python -c import numpy; numpy.test as ShellCommand object? Thanks, Chris ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org

Re: [Numpy-discussion] what to use in buildbot config for numpy testing

2011-09-07 Thread Derek Homeier
On 07.09.2011, at 10:52PM, Chris Kees wrote: Is there a recommended way to run the numpy test suite as a buildbot test? Just run ad python -c import numpy; numpy.test as ShellCommand object? It would be numpy.test() [or numpy.test('full')]; then it depends on what you need as the return

Re: [Numpy-discussion] what to use in buildbot config for numpy testing

2011-09-07 Thread Chris Kees
Hi Derek, Thanks! I forgot that python would exit with 0 even if numpy.test() fails. That could have taken a while to realize. Chris On Wed, Sep 7, 2011 at 4:22 PM, Derek Homeier de...@astro.physik.uni-goettingen.de wrote: On 07.09.2011, at 10:52PM, Chris Kees wrote: Is there a recommended