##// 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
# Set this prefix to where you want to install the plugin
PREFIX=~/usr/local
PREFIX=~/tmp/local
plugin: IPython_doctest_plugin.egg-info
dtest: plugin dtexample.py
nosetests -vs --with-ipdoctest --doctest-tests --doctest-extension=txt \
dtexample.py
# Note: this test is double counting!!!
rtest: plugin dtexample.py
nosetests -vs --with-ipdoctest --doctest-tests test_refs.py
test: plugin dtexample.py
nosetests -vs --with-ipdoctest --doctest-tests --doctest-extension=txt \
dtexample.py test*.py test*.txt
deb: plugin dtexample.py
nosetests -vs --with-ipdoctest --doctest-tests --doctest-extension=txt \
test_combo.txt
iptest: plugin
nosetests -vs --with-ipdoctest --doctest-tests --doctest-extension=txt \
IPython
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/