##// END OF EJS Templates
Merge pull request #5010 from jdfreder/widget-ff...
Thomas Kluyver -
r15020:12bac7bd merge
Show More
Name Size Modified Last Commit Author
/ IPython / testing / plugin
Makefile 1.4 KiB
r2760:afe1263a8d78
Brian Granger
README.txt 1.2 KiB
r1334:049617d6114d
Fernando Perez
__init__.py 0 B
r1566:5dee5d3964ff
Fernando Perez
dtexample.py 2.8 KiB
r13396:2d473591583c
Thomas Kluyver
ipdoctest.py 30.5 KiB
r14966:4197f72f3069
Julian Taylor
iptest.py 523 B
r13348:e6afea5170f5
Thomas Kluyver
setup.py 539 B
r1334:049617d6114d
Fernando Perez
show_refs.py 393 B
r13379:974fa61b0ea2
Thomas Kluyver
simple.py 550 B
r13396:2d473591583c
Thomas Kluyver
simplevars.py 61 B
r13348:e6afea5170f5
Thomas Kluyver
test_combo.txt 923 B
r1334:049617d6114d
Fernando Perez
test_example.txt 730 B
r7777:2255c2b87953
MinRK
test_exampleip.txt 816 B
r1334:049617d6114d
Fernando Perez
test_ipdoctest.py 1.7 KiB
r4892:0707dc543cd2
Thomas Kluyver
test_refs.py 872 B
r4892:0707dc543cd2
Thomas Kluyver

=======================================================
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