test_ok2/changelog
Bruno Oliveira ade5f2c8c5 Merge remote-tracking branch 'upstream/master' into merge-master-into-features 2019-01-29 19:36:56 -02:00
..
3094.feature.rst xunit-style functions and methods are invoked by autouse fixtures 2019-01-10 12:10:04 -02:00
3547.bugfix.rst Update changelog 2019-01-14 22:58:41 -05:00
4280.bugfix.rst Improve quitting from pdb 2019-01-20 00:34:16 +01:00
4402.bugfix.rst Group warnings by message instead of by test id 2019-01-22 19:42:22 -02:00
4536.bugfix.rst Improve changelog 2018-12-12 23:28:47 +01:00
4643.trivial.rst Add CHANGELOG entry for #4643 2019-01-14 09:03:23 -02:00
4649.bugfix.rst fix #4649 - also transfer markers to keywordmapping 2019-01-18 23:18:51 +01:00
4653.bugfix.rst Fixes #4653 - tmp_path provides real path 2019-01-18 12:54:00 -08:00
4657.trivial.rst Fix usages of py.io.saferepr 2019-01-20 16:36:23 -08:00
4660.feature.rst Add CHANGELOG entry for #4660 2019-01-24 20:07:21 -02:00
4667.bugfix.rst pytest_terminal_summary uses result from pytest_report_teststatus hook, rather than hardcoded strings 2019-01-24 10:17:29 -06:00
4669.bugfix.rst Handle unittest.SkipTest exception with non-ascii characters 2019-01-28 12:50:04 -02:00
4680.bugfix.rst fix #4680 - ensure tmpdir and tmp_path are the same 2019-01-27 13:05:34 +01:00
4681.bugfix.rst ensure tmp_path is always a realpath 2019-01-27 14:08:43 +01:00
4688.feature.rst Add CHANGELOG entry for #4688 2019-01-28 19:03:19 -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.