test_ok2/changelog
Daniel Hahler 308b733b9d Revert "Merge pull request #4854 from blueyed/pdb-skip"
This reverts commit e88aa957ae, reversing
changes made to 1410d3dc9a.

I do not think it warrants an option anymore, and there is a way to
achieve this via `--pdbcls` if needed.
2019-04-27 02:25:38 +02:00
..
4826.feature.rst Emit warning for unknown marks 2019-04-01 10:40:18 +11: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
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
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
5089.bugfix.rst Fix handle repr error with showlocals and verbose output 2019-04-19 18:54:21 +03:00
5108.feature.rst terminal summary: display passes after warnings 2019-04-15 16:31:42 +02:00
5139.bugfix.rst Eliminate core dependency on 'terminal' plugin 2019-04-17 11:19:19 -07:00
5144.bugfix.rst changelog [ci skip] 2019-04-18 23:54:20 +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.