README.txt 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. =======================================================
  2. Nose plugin with IPython and extension module support
  3. =======================================================
  4. This directory provides the key functionality for test support that IPython
  5. needs as a nose plugin, which can be installed for use in projects other than
  6. IPython.
  7. The presence of a Makefile here is mostly for development and debugging
  8. purposes as it only provides a few shorthand commands. You can manually
  9. install the plugin by using standard Python procedures (``setup.py install``
  10. with appropriate arguments).
  11. To install the plugin using the Makefile, edit its first line to reflect where
  12. you'd like the installation.
  13. Once you've set the prefix, simply build/install the plugin with::
  14. make
  15. and run the tests with::
  16. make test
  17. You should see output similar to::
  18. maqroll[plugin]> make test
  19. nosetests -s --with-ipdoctest --doctest-tests dtexample.py
  20. ..
  21. ----------------------------------------------------------------------
  22. Ran 2 tests in 0.016s
  23. OK