test_ok2/changelog
Jeffrey Rackauckas 1eef53b6fe Update --collect-only to display test descriptions when ran in verbose mode. 2018-12-29 22:46:46 -08:00
..
891.removal.rst add first set of changelog entries for marker removal 2018-12-21 14:02:38 +01:00
2169.removal.rst Errors in parametrize id functions now propagate the error instead of issuing a warning 2018-12-14 21:07:54 -02:00
3050.deprecation.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
3078.removal.rst Remove config.warn, Node.warn; pytest_logwarning issues a warning when implemented 2018-12-14 12:50:18 -02:00
3079.removal.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
3082.removal.rst Remove support for applying marks to values in parametrize 2018-12-20 16:16:13 -02:00
3083.removal.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
3085.removal.rst Remove support to pass strings to pytest.main() 2018-12-14 15:45:47 -02:00
3086.removal.rst Remove support for '[pytest]' section in setup.cfg file 2018-12-19 17:43:17 -02:00
3191.feature.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
3532.bugfix.rst Handle missing space with -p 2018-12-11 04:27:03 +01:00
3616.removal.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
3632.feature.rst Update tests to pass in py27 2018-11-12 09:28:47 -06:00
3974.deprecation.rst Deprecate the 'message' parameter of pytest.raises 2018-12-12 22:26:30 -02:00
4278.feature.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
4292.feature.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
4327.bugfix.rst Rename and split out the testing, and reword the changelog. 2018-11-18 20:01:11 +00:00
4371.feature.rst Update --collect-only to display test descriptions when ran in verbose mode. 2018-12-29 22:46:46 -08:00
4386.feature.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
4397.bugfix.rst Add changelog entry for printable node ids 2018-11-19 11:03:52 -08:00
4416.feature.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
4421.removal.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
4435.bugfix.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
4435.deprecation.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
4447.trivial.rst Change deprecation type of --result-log to PytestDeprecationWarning 2018-12-01 14:29:50 -02:00
4458.bugfix.rst Display actual test ids in `--collect-only` 2018-11-25 09:33:18 -08:00
4483.feature.rst Rename "junit_time" to "junit_duration_report" option 2018-12-14 12:56:26 -02:00
4489.removal.rst Remove request.cached_setup 2018-12-01 15:59:44 -02:00
4532.feature.rst Add CHANGELOG 2018-12-11 20:40:06 -02:00
4535.removal.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
4543.removal.rst Review changelog entries for features branch 2018-12-14 11:17:24 -02:00
4545.removal.rst Calling fixtures directly is now an error instead of a warning 2018-12-19 09:26:29 -02:00
4546.removal.rst add first set of changelog entries for marker removal 2018-12-21 14:02:38 +01:00
4547.removal.rst Remove deprecated record_xml_property 2018-12-14 15:10:08 -02:00
4548.removal.rst Raise an error if pytest_plugins is defined in a non-top-level conftest.py file 2018-12-19 18:09:47 -02:00
README.rst Separate deprecations and removals in the CHANGELOG 2018-09-13 14:02:01 -03:00
_template.rst Update CHANGELOG template to put issue links at the start of entries 2018-07-07 11:02:33 -03:00

README.rst

This directory contains "newsfragments" which are short files that contain a small **ReST**-formatted
text that will be added to the next ``CHANGELOG``.

The ``CHANGELOG`` will be read by users, so this description should be aimed to pytest users
instead of describing internal changes which are only relevant to the developers.

Make sure to use full sentences with correct case and punctuation, for example::

    Fix issue with non-ascii messages from the ``warnings`` module.

Each file should be named like ``<ISSUE>.<TYPE>.rst``, where
``<ISSUE>`` is an issue number, and ``<TYPE>`` is one of:

* ``feature``: new user facing features, like new command-line options and new behavior.
* ``bugfix``: fixes a reported bug.
* ``doc``: documentation improvement, like rewording an entire session or adding missing docs.
* ``deprecation``: feature deprecation.
* ``removal``: feature removal.
* ``vendor``: changes in packages vendored in pytest.
* ``trivial``: fixing a small typo or internal change that might be noteworthy.

So for example: ``123.feature.rst``, ``456.bugfix.rst``.

If your PR fixes an issue, use that number here. If there is no issue,
then after you submit the PR and get the PR number you can add a
changelog using that instead.

If you are not sure what issue type to use, don't hesitate to ask in your PR.

``towncrier`` preserves multiple paragraphs and formatting (code blocks, lists, and so on), but for entries
other than ``features`` it is usually better to stick to a single paragraph to keep it concise. You can install
``towncrier`` and then run ``towncrier --draft``
if you want to get a preview of how your change will look in the final release notes.