/
niceSOFT
/
python3-pytest
ОбзорДокументацияВойти
/
niceSOFT
/
python3-pytest
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
python3-pytest/
changelog/
..
.gitignore

🎨 Set up Git to only allow certain change notes

2 года назад
10128.bugfix.rst

Apply warning filters to `pytest_configure` (#14760)

19 дней назад
10721.doc.rst

doc/writing_plugins: change entry-point example from setup.py -> pyproject.toml

8 дней назад
1139.bugfix.rst

Fix missing traceback source for code with cwd-relative filenames (#14744)

21 день назад
11502.bugfix.rst

fix: validate -c/--config-file and read [pytest] from custom TOML files

5 дней назад
11933.bugfix.rst

Fix pytest.warns re-emitting warnings with module="warnings" (#14747)

20 дней назад
12307.bugfix.rst

Fix elision of long collections in assertion messages with -vv (#14748)

16 дней назад
12624.improvement.rst

Consider entry points for PYTEST_PLUGINS and pytest_plugins (#14752)

20 дней назад
12697.improvement.rst

Apply filterwarnings whilst importing plugins

18 дней назад
12824.bugfix.rst

Reject implicit option destination conflicts (#14661)

20 дней назад
12857.doc.rst

docs: clarify confcutdir plugin discovery cutoff (#14598)

14 дней назад
12860.improvement.rst

assertion: add support for `dict.keys()` and `dict.values()` types in assertion explanations (as sets)

2 месяца назад
13564.improvement.rst

fix #13564 - warn when fixtures get wrapped with a decorator (#13745)

19 дней назад
14164.improvement.rst

approx: expose `pytest.Approx` as the return type of `pytest.approx`

2 месяца назад
14523.improvement.rst

[perf] Cap the dict extra-items diff by the truncation budget

14 дней назад
14586.bugfix.rst

Reject negative log_auto_indent values (#14586)

14 дней назад
14635.bugfix.rst

docs: add changelog fragment and architectural comment for #14635

21 день назад
14637.bugfix.rst

Fix off-by-one in trailing assertion diff skipping (#14637) (#14639)

месяц назад
14638.bugfix.rst

Error on top-level options in pytest.toml (#14646)

2 месяца назад
14675.bugfix.rst

Allow int for ``truncation_limit_lines`` and ``truncation_limit_chars`` in TOML (#14692)

11 дней назад
14683.bugfix.rst

Fix rootdir conftest fixtures not visible outside rootdir (#14683)

месяц назад
14700.bugfix.rst

fix: unwrap fixture definitions for doctest locations

месяц назад
14705.bugfix.rst

fix: validate -c/--config-file and read [pytest] from custom TOML files

5 дней назад
14716.breaking.rst

fix: validate -c/--config-file and read [pytest] from custom TOML files

5 дней назад
14724.improvement.rst

fix: keep pytest_terminal_summary under --no-summary (#14730)

19 дней назад
14742.deprecation.rst

docs: sync CallSpec2 deprecation removal timeline

19 дней назад
14743.feature.rst

feat: introduce a legend for - and + in diff outputs (#14756)

20 дней назад
14751.improvement.rst

Accept type expressions in Parser.addini(type=...) (#14751)

17 дней назад
14754.improvement.rst

Merge pull request #14754, handle infinite relative tolerance for timedelta values

9 дней назад
14791.improvement.rst

Raise UsageError from getini for invalid configuration values

10 дней назад
6881.feature.rst

fix #6881: add parametrize_long_str_id_strategy ini option

21 день назад
7940.bugfix.rst

fix: address review feedback on rm_rf permission handling

21 день назад
8593.breaking.rst

Make `Metafunc.parametrize` keyword-only from indirect onwards (#14753)

20 дней назад
8914.bugfix.rst

fixtures: reorder parametrized tests by param value, not index (#14746)

14 дней назад
README.rst

doc: fix ~75 typos and grammar issues across documentation (#14179)

6 месяцев назад
_template.rst

Update CHANGELOG template to put issue links at the start of entries

8 лет назад
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 in the **past or present tense** and use punctuation, examples::
 
Improved verbose diff output with sequences.
 
Terminal summary statistics now use multiple colors.
 
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.
* ``improvement``: improvement of existing functionality, usually without requiring user intervention (for example, new fields being written in ``--junit-xml``, improved colors in terminal, etc).
* ``bugfix``: fixes a bug.
* ``doc``: documentation improvement, like rewording an entire section or adding missing docs.
* ``deprecation``: feature deprecation.
* ``breaking``: a change which may break existing suites, such as feature removal or behavior change.
* ``vendor``: changes in packages vendored in pytest.
* ``packaging``: notes for downstreams about unobvious side effects
and tooling. Changes in the test invocation considerations and
runtime assumptions.
* ``contrib``: stuff that affects the contributor experience. e.g.
Running tests, building the docs, setting up the development
environment.
* ``misc``: changes that are hard to assign to any of the above
categories.
 
So for example: ``123.feature.rst``, ``456.bugfix.rst``.
 
.. tip::
 
See :file:`pyproject.toml` for all available categories
(``tool.towncrier.type``).
 
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 also run ``tox -e docs`` to build the documentation
with the draft changelog (``doc/en/_build/html/changelog.html``) if you want to get a preview of how your change will look in the final release notes.