##// END OF EJS Templates
Merge branch 'master' of git://github.com/ipython/ipython into qtfrontend
epatters -
r2608:1fe09a76 merge
Show More
Name Size Modified Last Commit Author
/ IPython / testing / plugin
Makefile 1.4 KiB
r2048:d5d637e41a96
Brian Granger
README.txt 1.2 KiB
r1334:049617d6114d
Fernando Perez
__init__.py 0 B
r1566:5dee5d3964ff
Fernando Perez
dtexample.py 2.7 KiB
r1868:2f50ff6b653f
Fernando Perez
ipdoctest.py 30.9 KiB
r2445:e2ecf6f98529
Fernando Perez
iptest.py 474 B
r1334:049617d6114d
Fernando Perez
setup.py 539 B
r1334:049617d6114d
Fernando Perez
show_refs.py 342 B
r2109:93b5c4cd3ec9
Fernando Perez
simple.py 493 B
r1524:cdaaaa3875b4
Fernando Perez
simplevars.py 22 B
r1420:34bafc012391
Fernando Perez
test_combo.txt 923 B
r1334:049617d6114d
Fernando Perez
test_example.txt 728 B
r1334:049617d6114d
Fernando Perez
test_exampleip.txt 816 B
r1334:049617d6114d
Fernando Perez
test_ipdoctest.py 1.6 KiB
r2419:a0136ae6c1ed
Fernando Perez
test_refs.py 942 B
r1910:8bc770abfe87
Fernando Perez

=======================================================
Nose plugin with IPython and extension module support
=======================================================

This directory provides the key functionality for test support that IPython
needs as a nose plugin, which can be installed for use in projects other than
IPython.

The presence of a Makefile here is mostly for development and debugging
purposes as it only provides a few shorthand commands. You can manually
install the plugin by using standard Python procedures (``setup.py install``
with appropriate arguments).

To install the plugin using the Makefile, edit its first line to reflect where
you'd like the installation. If you want it system-wide, you may want to edit
the install line in the plugin target to use sudo and no prefix::

sudo python setup.py install

instead of the code using `--prefix` that's in there.

Once you've set the prefix, simply build/install the plugin with::

make

and run the tests with::

make test

You should see output similar to::

maqroll[plugin]> make test
nosetests -s --with-ipdoctest --doctest-tests dtexample.py
..
----------------------------------------------------------------------
Ran 2 tests in 0.016s

OK