test_ok2/changelog
Bruno Oliveira 37fb50a3ed
Features assertion pass hook (#3479)
Features assertion pass hook
2019-06-26 21:14:19 -03:00
..
466.deprecation.rst Deprecate funcargnames alias 2019-06-26 08:53:17 +10:00
1149.removal.rst Do not allow abbreviated arguments 2019-06-25 13:51:33 +10:00
1403.bugfix.rst Switch from deprecated imp to importlib 2019-06-24 09:48:38 -07:00
1671.bugfix.rst Include pytest version in the cached pyc tags 2019-06-24 20:37:07 -03:00
2761.bugfix.rst Switch from deprecated imp to importlib 2019-06-24 09:48:38 -07:00
3457.feature.rst Improve docs and reference 2019-06-26 19:15:00 -03:00
3457.trivial.rst Add a trivial note about astor 2019-06-26 19:21:12 -03:00
4488.deprecation.rst Postpone removal of --result-log to pytest 6.0 2019-06-12 08:26:11 -03:00
5078.bugfix.rst Switch from deprecated imp to importlib 2019-06-24 09:48:38 -07:00
5125.removal.rst pre-commit 2019-06-15 17:41:13 +02:00
5260.bugfix.rst Show bytes ascii representation instead of numeric value 2019-06-25 20:40:25 -03:00
5315.doc.rst add updated monkeypatch examples 2019-05-27 20:55:15 -04:00
5335.bugfix.rst logging: Extend LEVELNAME_FMT_REGEX 2019-06-03 05:53:19 +02:00
5354.bugfix.rst Fix `pytest.mark.parametrize` when the argvalue is an iterator 2019-06-01 15:09:17 -07:00
5370.bugfix.rst Add changelog entries for reverting all() handling 2019-06-03 08:42:03 -07:00
5371.bugfix.rst Add changelog entries for reverting all() handling 2019-06-03 08:42:03 -07:00
5372.bugfix.rst Add changelog entries for reverting all() handling 2019-06-03 08:42:03 -07:00
5383.bugfix.rst Fix verbosity bug in --collect-only 2019-06-05 20:10:16 -03:00
5389.bugfix.rst add changelog file for #5389 2019-06-04 10:55:38 -07:00
5390.bugfix.rst item.obj is again a bound method on TestCase function items 2019-06-04 20:22:49 -03:00
5402.removal.rst Turn PytestDeprecationWarning into error 2019-06-05 19:02:52 -03:00
5404.bugfix.rst Emit warning for broken object 2019-06-09 22:17:40 +10:00
5412.removal.rst Remove ExceptionInfo.__str__, falling back to __repr__ 2019-06-06 12:20:32 -03:00
5416.doc.rst Add `slow` marker in run/skip option example. 2019-06-06 10:15:43 -07:00
5432.bugfix.rst Switch from deprecated imp to importlib 2019-06-24 09:48:38 -07:00
5433.bugfix.rst Switch from deprecated imp to importlib 2019-06-24 09:48:38 -07:00
5440.feature.rst Integrate pytest-faulthandler into the core 2019-06-21 21:02:24 -03:00
5444.bugfix.rst Fix --sw crash when first file in cmdline fails to collect 2019-06-13 16:47:01 -03:00
5452.feature.rst Make pytest warnings show as from 'pytest' module instead of '_pytest.warning_types' 2019-06-15 11:48:34 -03:00
5482.bugfix.rst Pickup additional positional args passed to _parse_parametrize_args 2019-06-24 20:43:52 -04: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.