PKG-INFO 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. Metadata-Version: 1.1
  2. Name: django-nose
  3. Version: 1.4.5
  4. Summary: Makes your Django tests simple and snappy
  5. Home-page: http://github.com/django-nose/django-nose
  6. Author: Erik Rose
  7. Author-email: erikrose@grinchcentral.com
  8. License: BSD
  9. Description:
  10. ===========
  11. django-nose
  12. ===========
  13. **django-nose** provides all the goodness of `nose`_ in your Django tests, like:
  14. * Testing just your apps by default, not all the standard ones that happen to
  15. be in ``INSTALLED_APPS``
  16. * Running the tests in one or more specific modules (or apps, or classes, or
  17. folders, or just running a specific test)
  18. * Obviating the need to import all your tests into ``tests/__init__.py``.
  19. This not only saves busy-work but also eliminates the possibility of
  20. accidentally shadowing test classes.
  21. * Taking advantage of all the useful `nose plugins`_
  22. .. _nose: https://nose.readthedocs.io/en/latest/
  23. .. _nose plugins: http://nose-plugins.jottit.com/
  24. It also provides:
  25. * Fixture bundling, an optional feature which speeds up your fixture-based
  26. tests by a factor of 4
  27. * Reuse of previously created test DBs, cutting 10 seconds off startup time
  28. * Hygienic TransactionTestCases, which can save you a DB flush per test
  29. * Support for various databases. Tested with MySQL, PostgreSQL, and SQLite.
  30. Others should work as well.
  31. django-nose requires nose 1.2.1 or later, and the `latest release`_ is
  32. recommended. It follows the `Django's support policy`_, supporting:
  33. * Django 1.8 (LTS) with Python 2.7, 3.4, or 3.5
  34. * Django 1.9 with Python 2.7, 3.4, or 3.5
  35. * Django 1.10 with Python 2.7, 3.4, or 3.5
  36. * Django 1.11 (LTS) with Python 2.7, 3.4, 3.5, or 3.6
  37. .. _latest release: https://pypi.python.org/pypi/nose
  38. .. _Django's support policy: https://docs.djangoproject.com/en/1.8/internals/release-process/#supported-versions
  39. Development
  40. -----------
  41. :Code: https://github.com/django-nose/django-nose
  42. :Issues: https://github.com/django-nose/django-nose/issues?state=open
  43. :Docs: https://django-nose.readthedocs.io
  44. Changelog
  45. ---------
  46. 1.4.5 (2017-08-22)
  47. ~~~~~~~~~~~~~~~~~~
  48. * Add Django 1.11 support
  49. 1.4.4 (2016-06-27)
  50. ~~~~~~~~~~~~~~~~~~
  51. * Add Django 1.10 support
  52. * Drop Django 1.4 - 1.7, and Python 2.6 support
  53. * Drop South support
  54. 1.4.3 (2015-12-28)
  55. ~~~~~~~~~~~~~~~~~~
  56. * Add Django 1.9 support
  57. * Support long options without equals signs, such as "--attr selected"
  58. * Support nose plugins using callback options
  59. * Support nose options without default values (jsatt)
  60. * Remove Django from install dependencies, to avoid accidental upgrades
  61. (jsocol, willkg)
  62. * Setting REUSE_DB to an empty value now disables REUSE_DB, instead of
  63. enabling it (wdoekes)
  64. 1.4.2 (2015-10-07)
  65. ~~~~~~~~~~~~~~~~~~
  66. * Warn against using REUSE_DB=1 and FastFixtureTestCase in docs
  67. * REUSE_DB=1 uses new transaction management in Django 1.7, 1.8 (scottsexton)
  68. * Try to avoid accidentally using production database with REUSE_DB=1 (alexjg, eroninjapan)
  69. * Supported Django versions limited to current supported Django version 1.4,
  70. 1.7, and 1.8, as well as relevant Python versions.
  71. 1.4.1 (2015-06-29)
  72. ~~~~~~~~~~~~~~~~~~
  73. * Fix version number (ezarowny)
  74. * Fix choice options, unbreaking nose-cover (aamirtharaj-rpx, jwhitlock)
  75. * Support 1.8 app loading system (dgladkov)
  76. * Support non-ASCII file names (singingwolfboy)
  77. * Better PEP8'd assertion names (roganov)
  78. 1.4 (2015-04-23)
  79. ~~~~~~~~~~~~~~~~
  80. * Django 1.8 support (timc3, adepue, jwhitlock)
  81. * Support --testrunner option (st4lk)
  82. * Fix REUSE_DB second run in py3k (edrmp)
  83. 1.3 (2014-12-05)
  84. ~~~~~~~~~~~~~~~~
  85. * Django 1.6 and 1.7 support (conrado, co3k, Nepherhotep, mbertheau)
  86. * Python 3.3 and 3.4 testing and support (frewsxcv, jsocol)
  87. 1.2 (2013-07-23)
  88. ~~~~~~~~~~~~~~~~
  89. * Python 3 support (melinath and jonashaag)
  90. * Django 1.5 compat (fabiosantoscode)
  91. 1.1 (2012-05-19)
  92. ~~~~~~~~~~~~~~~~
  93. * Django TransactionTestCases don't clean up after themselves; they leave
  94. junk in the DB and clean it up only on ``_pre_setup``. Thus, Django makes
  95. sure these tests run last. Now django-nose does, too. This means one fewer
  96. source of failures on existing projects. (Erik Rose)
  97. * Add support for hygienic TransactionTestCases. (Erik Rose)
  98. * Support models that are used only for tests. Just put them in any file
  99. imported in the course of loading tests. No more crazy hacks necessary.
  100. (Erik Rose)
  101. * Make the fixture bundler more conservative, fixing some conceivable
  102. situations in which fixtures would not appear as intended if a
  103. TransactionTestCase found its way into the middle of a bundle. (Erik Rose)
  104. * Fix an error that would surface when using SQLAlchemy with connection
  105. pooling. (Roger Hu)
  106. * Gracefully ignore the new ``--liveserver`` option introduced in Django 1.4;
  107. don't let it through to nose. (Adam DePue)
  108. 1.0 (2012-03-12)
  109. ~~~~~~~~~~~~~~~~
  110. * New fixture-bundling plugin for avoiding needless fixture setup (Erik Rose)
  111. * Moved FastFixtureTestCase in from test-utils, so now all the
  112. fixture-bundling stuff is in one library. (Erik Rose)
  113. * Added the REUSE_DB setting for faster startup and shutdown. (Erik Rose)
  114. * Fixed a crash when printing options with certain verbosities. (Daniel Abel)
  115. * Broke hard dependency on MySQL. Support PostgreSQL. (Roger Hu)
  116. * Support SQLite, both memory- and disk-based. (Roger Hu and Erik Rose)
  117. * Nail down versions of the package requirements. (Daniel Mizyrycki)
  118. _(Older changes can be found in the full documentation)._
  119. Keywords: d,j,a,n,g,o, ,n,o,s,e, ,d,j,a,n,g,o,-,n,o,s,e
  120. Platform: UNKNOWN
  121. Classifier: Development Status :: 5 - Production/Stable
  122. Classifier: Environment :: Web Environment
  123. Classifier: Framework :: Django
  124. Classifier: Intended Audience :: Developers
  125. Classifier: License :: OSI Approved :: BSD License
  126. Classifier: Operating System :: OS Independent
  127. Classifier: Programming Language :: Python
  128. Classifier: Programming Language :: Python :: 2
  129. Classifier: Programming Language :: Python :: 2.6
  130. Classifier: Programming Language :: Python :: 2.7
  131. Classifier: Programming Language :: Python :: 3
  132. Classifier: Programming Language :: Python :: 3.4
  133. Classifier: Programming Language :: Python :: 3.5
  134. Classifier: Topic :: Software Development :: Testing