test_ok2/changelog
Bruno Oliveira 19035f4b55
Merge pull request #5068 from blueyed/reportchars
Add support for reportchars=A (`-rA`)
2019-04-12 08:13:22 -03:00
..
4826.feature.rst Emit warning for unknown marks 2019-04-01 10:40:18 +11:00
4854.feature.rst pdb: add option to skip `pdb.set_trace()` 2019-03-29 11:13:38 +01:00
4907.feature.rst Show XFail reason as part of JUnitXML message field 2019-04-11 22:26:05 +01:00
4935.doc.rst More docs on registering marks 2019-03-31 14:22:30 +11:00
4942.trivial.rst capture: do not set logging.raiseExceptions = False 2019-04-02 13:20:39 +02:00
5026.feature.rst changelog, fix branch coverage 2019-04-05 12:12:29 +02:00
5031.bugfix.rst pytester: use monkeypatch with Testdir 2019-04-03 15:02:53 +02:00
5034.feature.rst run-last-failure: improve reporting 2019-04-03 16:27:12 +02:00
5035.feature.rst Support glob argument with ``--cache-show`` 2019-04-04 18:10:39 +02:00
5039.bugfix.rst pdb: try to import --pdbcls in pytest_configure only 2019-04-03 22:35:18 +02:00
5059.feature.rst pytester: allow passing in stdin to run/popen 2019-04-06 12:13:28 +02:00
5059.trivial.rst testdir.popen: use kwargs with defaults for stdout/stderr 2019-04-06 12:13:48 +02:00
5068.feature.rst doc/changelog 2019-04-11 11:44:04 +02:00
5069.trivial.rst changelog [ci skip] 2019-04-10 21:39:51 +02:00
5082.trivial.rst changelog [ci skip] 2019-04-10 23:15:25 +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.