PKG-INFO 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Metadata-Version: 1.1
  2. Name: nose
  3. Version: 1.3.7
  4. Summary: nose extends unittest to make testing easier
  5. Home-page: http://readthedocs.org/docs/nose/
  6. Author: Jason Pellerin
  7. Author-email: jpellerin+nose@gmail.com
  8. License: GNU LGPL
  9. Description: nose extends the test loading and running features of unittest, making
  10. it easier to write, find and run tests.
  11. By default, nose will run tests in files or directories under the current
  12. working directory whose names include "test" or "Test" at a word boundary
  13. (like "test_this" or "functional_test" or "TestClass" but not
  14. "libtest"). Test output is similar to that of unittest, but also includes
  15. captured stdout output from failing tests, for easy print-style debugging.
  16. These features, and many more, are customizable through the use of
  17. plugins. Plugins included with nose provide support for doctest, code
  18. coverage and profiling, flexible attribute-based test selection,
  19. output capture and more. More information about writing plugins may be
  20. found on in the nose API documentation, here:
  21. http://readthedocs.org/docs/nose/
  22. If you have recently reported a bug marked as fixed, or have a craving for
  23. the very latest, you may want the development version instead:
  24. https://github.com/nose-devs/nose/tarball/master#egg=nose-dev
  25. Keywords: test unittest doctest automatic discovery
  26. Platform: UNKNOWN
  27. Classifier: Development Status :: 5 - Production/Stable
  28. Classifier: Intended Audience :: Developers
  29. Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
  30. Classifier: Natural Language :: English
  31. Classifier: Operating System :: OS Independent
  32. Classifier: Programming Language :: Python
  33. Classifier: Programming Language :: Python :: 3
  34. Classifier: Topic :: Software Development :: Testing