test_ok1/changelog
Daniel Hahler f013a5e8c1 pytester: use temporary HOME with spawn
Followup to https://github.com/pytest-dev/pytest/issues/4956.
2019-05-30 17:39:44 +02:00
..
2064.bugfix.rst pdb: import pdbcls lazily 2019-05-26 15:56:38 +02:00
4559.feature.rst Added the junit_log_passing_tests ini flag. 2019-04-04 20:26:48 -07:00
4908.bugfix.rst pdb: trigger pytest_enter_pdb hook with post-mortem 2019-05-23 09:09:53 +02:00
4956.feature.rst pytester: use temporary HOME with spawn 2019-05-30 17:39:44 +02:00
5062.feature.rst Add changelog entry for 5062 2019-05-25 19:34:08 +03:00
5063.feature.rst Switch to importlib-metadata 2019-05-27 13:24:08 -07:00
5091.feature.rst Improve output of ini options in --help 2019-05-23 09:33:07 +02:00
5250.doc.rst add #5250 changelog entry 2019-05-12 10:08:46 -04:00
5256.bugfix.rst Handle lone surrogate unicode character not being representable in Jython 2019-05-16 17:59:31 -03:00
5257.bugfix.rst Remove 'b' from sys.stdout.mode 2019-05-14 15:00:59 -07:00
5269.feature.rst importorskip: display/include ImportError 2019-05-20 14:13:33 +02:00
5278.bugfix.rst changelog: Fix typo 2019-05-23 16:48:39 +01:00
5286.bugfix.rst Fix `disable_test_id_escaping_and_forfeit_all_rights_to_community_support` option when using a list of test IDs 2019-05-21 09:48:22 +09:00
5311.feature.rst Update changelog/5311.feature.rst 2019-05-29 22:00:34 +02:00
5333.bugfix.rst fixup! Fix regression with --lf and non-selected failures 2019-05-29 23:24:52 +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.