##// END OF EJS Templates
Checkpoint where tests are recognized. Random tests not working yet.
Checkpoint where tests are recognized. Random tests not working yet.

File last commit:

r1378:0b100f18
r1378:0b100f18
Show More
Makefile
28 lines | 786 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
test: plugin dtexample.py
nosetests -vs --with-ipdoctest --doctest-tests --doctest-extension=txt \
dtexample.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/