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 |
r4892:0707dc543cd2 |
Thomas Kluyver
|
|
ipdoctest.py | 32.2 KiB |
r5456:b46094594821 |
Thomas Kluyver
|
|
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.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