test_ok2/changelog
Bruno Oliveira 2962c7367c
Merge pull request #3307 from KKoukiou/rhv-qe-fix
logging.py: Don't change log level of the root logger to bigger numeric value
2018-03-27 18:03:22 -03:00
..
1478.feature Add captured-log support to --show-capture 2018-02-18 20:18:37 +01:00
1642.feature.rst Change 1642 entry from "trivial" to "feature" 2018-02-26 19:56:53 -03:00
1713.doc.rst Add a CHANGELOG entry for the reference docs 2018-03-06 20:41:20 -03:00
2370.bugfix.rst Suppress ``IOError`` when closing the temporary file used for capturing streams in Python 2.7. 2018-03-13 17:41:42 -03:00
2405.feature.rst Sort fixtures by scope when determining fixture closure 2018-03-20 20:10:53 -03:00
2770.feature Renamed the fixture record_xml_property to record_property and adapted logic so that the properties are passed to the TestReport object and thus allow compatibility with pytest-xdist. 2018-02-20 15:46:26 -06:00
2770.removal.rst Add note about deprecating record_xml_property 2018-02-21 17:45:52 -03:00
3034.feature #3034 Fix comments 2018-02-23 22:49:17 +03:00
3084.removal deprecated pytest_plugins in non-top-level conftest 2018-03-10 21:20:12 +02:00
3139.feature implemented --last-failed-no-failures 2018-03-10 22:45:45 +02:00
3149.feature Small adjustment to CHANGELOG entry 2018-02-26 17:10:59 -03:00
3156.feature Add captured log msgs to junit xml file 2018-02-03 09:39:29 +01:00
3189.feature Update changelog wording slightly 2018-02-06 15:45:37 +00:00
3190.feature Expose `log_cli` as a CLI parser option. 2018-02-08 09:42:53 +00:00
3198.feature.rst Add --deselect command line option 2018-02-16 08:17:37 -06:00
3204.feature print captured logs before entering pdb 2018-02-17 20:32:49 +02:00
3213.feature Slight rewording in the CHANGELOG 2018-02-15 19:45:05 -02:00
3228.trivial.rst Add CHANGELOG entry about changed attrs req 2018-02-17 20:18:32 -02:00
3236.feature.rst Rename 3236.trivial.rst to 3236.feature.rst 2018-02-27 22:46:12 -03:00
3245.trivial.rst Modifying changelog to reflect new changes for 3245 2018-03-18 21:27:48 -07:00
3246.trival.rst Fix formatting of CHANGELOG entry 2018-02-21 15:40:25 -03:00
3250.trivial.rst Add CHANGELOG entry for #3250 2018-02-22 18:55:25 -03:00
3255.feature.rst Show "short test summary info" after tracebacks and warnings 2018-02-26 21:12:33 -03:00
3265.trivial.rst Reintroduce more_itertools dependency 2018-03-04 10:59:46 -03:00
3268.trivial #3268 Added changelog file 2018-03-02 10:54:31 +03:00
3291.trivial.rst Improve CHANGELOG entry a bit 2018-03-12 18:22:12 -03:00
3292.trivial.rst Add CHANGELOG entry 2018-03-09 17:46:44 -03:00
3296.feature unify cli verbosity handling 2018-03-13 07:05:22 +01:00
3296.trivial unify cli verbosity handling 2018-03-13 07:05:22 +01:00
3297.bugfix.rst Add changelog & myself (ankostis) to authors 2018-03-13 01:46:44 +02:00
3304.trivial remove CmdOptions since we can use argparse.Namespace() 2018-03-13 18:13:56 +01:00
3307.feature.rst Tweak changelog entry 2018-03-26 20:48:05 -03:00
3308.trivial.rst issue #3308: fix example in documentation 2018-03-14 15:44:43 +02:00
3312.feature Add support for pytest.approx comparisons between array and scalar 2018-03-14 15:47:21 -03:00
3314.bugfix.rst Add changelog. Ref #3314. 2018-03-15 21:31:12 -04:00
3330.trivial.rst Add CHANGELOG for #3330 2018-03-21 20:23:17 -03:00
README.rst Small update to changelog/README.rst 2018-02-17 10:20:41 -02:00
_template.rst Show multiple issue links in CHANGELOG entries 2017-07-26 10:58:06 -07: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.
* ``removal``: feature deprecation or 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.

Note that the ``towncrier`` tool will automatically
reflow your text, so it will work best if you stick to a single paragraph, but multiple sentences and links are OK
and encouraged. 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.