##// END OF EJS Templates
Set prompt separators in %doctest_mode to match Python's default.
Set prompt separators in %doctest_mode to match Python's default.

File last commit:

r1403:3926d6d2
r1418:77ce007a
Show More
Makefile
32 lines | 924 B | text/x-makefile | MakefileLexer
Fernando Perez
Added Nose support for IPython doctests and extension modules.
r1334 # Set this prefix to where you want to install the plugin
PREFIX=~/usr/local
PREFIX=~/tmp/local
plugin: IPython_doctest_plugin.egg-info
Fernando Perez
Checkpoint where tests are recognized. Random tests not working yet.
r1378 dtest: plugin dtexample.py
nosetests -vs --with-ipdoctest --doctest-tests --doctest-extension=txt \
dtexample.py
Fernando Perez
Local checkpoint of changes to testing machinery. Work in progress.
r1403 # Note: this test is double counting!!!
rtest: plugin dtexample.py
nosetests -vs --with-ipdoctest --doctest-tests test_refs.py
Fernando Perez
Added Nose support for IPython doctests and extension modules.
r1334 test: plugin dtexample.py
Fernando Perez
Checkpoint where tests are recognized. Random tests not working yet.
r1378 nosetests -vs --with-ipdoctest --doctest-tests --doctest-extension=txt \
Fernando Perez
Local checkpoint of changes to testing machinery. Work in progress.
r1403 dtexample.py test*.py test*.txt
Fernando Perez
Added Nose support for IPython doctests and extension modules.
r1334
deb: plugin dtexample.py
nosetests -vs --with-ipdoctest --doctest-tests --doctest-extension=txt \
test_combo.txt
Fernando Perez
Fixes to testing....
r1376 iptest: plugin
nosetests -vs --with-ipdoctest --doctest-tests --doctest-extension=txt \
IPython
Fernando Perez
Added Nose support for IPython doctests and extension modules.
r1334 IPython_doctest_plugin.egg-info: ipdoctest.py setup.py
python setup.py install --prefix=$(PREFIX)
touch $@
clean:
rm -rf IPython_doctest_plugin.egg-info *~ *pyc build/ dist/