<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/tests, branch v1.6.2</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>BUG: deal with shared lib extension in a single place. Fix ctypes.load_library.</title>
<updated>2011-07-01T19:32:27+00:00</updated>
<author>
<name>rgommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2011-06-19T09:49:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=025c8c77bb1e633ea6e8a0cb929528b1fbe85efc'/>
<id>025c8c77bb1e633ea6e8a0cb929528b1fbe85efc</id>
<content type='text'>
This is related to PEP 3149, tags in shared library extensions.  Only applies
to Linux (for now).  See also #1749.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is related to PEP 3149, tags in shared library extensions.  Only applies
to Linux (for now).  See also #1749.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix up shared library extension, which changed in Python 3.2. Closes #1749.</title>
<updated>2011-03-02T07:57:33+00:00</updated>
<author>
<name>rgommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2011-03-02T07:57:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ee0831a821744c2d013724456700573918b4ca37'/>
<id>ee0831a821744c2d013724456700573918b4ca37</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Add tests for matlib. Closes #1242.</title>
<updated>2010-07-31T11:49:25+00:00</updated>
<author>
<name>Pauli Virtanen</name>
<email>pav@iki.fi</email>
</author>
<published>2010-07-31T11:49:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=62ebd8eb6a761fc7fc8e28f16b4c7a4a3d0465ac'/>
<id>62ebd8eb6a761fc7fc8e28f16b4c7a4a3d0465ac</id>
<content type='text'>
(From Ralf Gommers.)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(From Ralf Gommers.)
</pre>
</div>
</content>
</entry>
<entry>
<title>Skip graciously when ctypes is not available.</title>
<updated>2009-03-12T14:17:09+00:00</updated>
<author>
<name>David Cournapeau</name>
<email>cournape@gmail.com</email>
</author>
<published>2009-03-12T14:17:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3042a38b466f2a79a165ecbe1b9c87124ae3e93a'/>
<id>3042a38b466f2a79a165ecbe1b9c87124ae3e93a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Tag ctypes load library tests as known failures on cygwin.</title>
<updated>2008-09-13T06:27:46+00:00</updated>
<author>
<name>David Cournapeau</name>
<email>cournape@gmail.com</email>
</author>
<published>2008-09-13T06:27:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ec1f7831680db674dfe3f8c89ab2159b0d8ed4c1'/>
<id>ec1f7831680db674dfe3f8c89ab2159b0d8ed4c1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Restore old test framework classes.</title>
<updated>2008-06-21T15:50:17+00:00</updated>
<author>
<name>Alan McIntyre</name>
<email>alan.mcintyre@local</email>
</author>
<published>2008-06-21T15:50:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=af7f89ea35ae9dbf38682d3215a20cc13ab0890c'/>
<id>af7f89ea35ae9dbf38682d3215a20cc13ab0890c</id>
<content type='text'>
Added numpy.testing.run_module_suite to simplify "if __name__ == '__main__'" boilerplate code in test 
modules.
Removed numpy/testing/pkgtester.py since it just consisted of an import statement after porting SciPy r4424.
Allow numpy.*.test() to accept the old keyword arguments (but issue a deprecation warning when old arguments 
are seen).
numpy.*.test() returns a test result object as before.
Fixed typo in distutils doc.

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added numpy.testing.run_module_suite to simplify "if __name__ == '__main__'" boilerplate code in test 
modules.
Removed numpy/testing/pkgtester.py since it just consisted of an import statement after porting SciPy r4424.
Allow numpy.*.test() to accept the old keyword arguments (but issue a deprecation warning when old arguments 
are seen).
numpy.*.test() returns a test result object as before.
Fixed typo in distutils doc.

</pre>
</div>
</content>
</entry>
<entry>
<title>Switched to use nose to run tests.  Added test and bench functions to all modules.</title>
<updated>2008-06-17T00:23:20+00:00</updated>
<author>
<name>Alan McIntyre</name>
<email>alan.mcintyre@local</email>
</author>
<published>2008-06-17T00:23:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c331857d8663ecf54bbe88c834755da749e8ab52'/>
<id>c331857d8663ecf54bbe88c834755da749e8ab52</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle library with extension in their name for ctypes.load_library.</title>
<updated>2008-05-25T09:27:57+00:00</updated>
<author>
<name>David Cournapeau</name>
<email>cournape@gmail.com</email>
</author>
<published>2008-05-25T09:27:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=dd490ff79df72b962675d00c36b949ab5b9ab6a9'/>
<id>dd490ff79df72b962675d00c36b949ab5b9ab6a9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not fail test when ctypes is not available; print a message about skipping the test instead.</title>
<updated>2008-03-23T17:16:06+00:00</updated>
<author>
<name>David Cournapeau</name>
<email>cournape@gmail.com</email>
</author>
<published>2008-03-23T17:16:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e2488d6b15e06cfbf603c72a99cf03006d2a89d6'/>
<id>e2488d6b15e06cfbf603c72a99cf03006d2a89d6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert accidentally commited changes to TestLoadLibrary unittest for ctypes.</title>
<updated>2008-03-23T06:16:32+00:00</updated>
<author>
<name>David Cournapeau</name>
<email>cournape@gmail.com</email>
</author>
<published>2008-03-23T06:16:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c0c85e05ee4f4e3ee4ad38084f7443b58451a90a'/>
<id>c0c85e05ee4f4e3ee4ad38084f7443b58451a90a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
