René's URL Explorer Experiment


Title: Update dependency pytest to v8.4.2 by renovate[bot] · Pull Request #28 · protoconf/client-python · GitHub

Open Graph Title: Update dependency pytest to v8.4.2 by renovate[bot] · Pull Request #28 · protoconf/client-python

X Title: Update dependency pytest to v8.4.2 by renovate[bot] · Pull Request #28 · protoconf/client-python

Description: This PR contains the following updates: Package Change Age Confidence pytest (changelog) ==8.3.2 → ==8.4.2 Release Notes pytest-dev/pytest (pytest) v8.4.2 Compare Source pytest 8.4.2 (2025-09-03) Bug fixes #​13478: Fixed a crash when using console_output_style{.interpreted-text role="confval"} with times and a module is skipped. #​13530: Fixed a crash when using pytest.approx{.interpreted-text role="func"} and decimal.Decimal{.interpreted-text role="class"} instances with the decimal.FloatOperation{.interpreted-text role="class"} trap set. #​13549: No longer evaluate type annotations in Python 3.14 when inspecting function signatures. This prevents crashes during module collection when modules do not explicitly use from __future__ import annotations and import types for annotations within a if TYPE_CHECKING: block. #​13559: Added missing [int]{.title-ref} and [float]{.title-ref} variants to the [Literal]{.title-ref} type annotation of the [type]{.title-ref} parameter in pytest.Parser.addini{.interpreted-text role="meth"}. #​13563: pytest.approx{.interpreted-text role="func"} now only imports numpy if NumPy is already in sys.modules. This fixes unconditional import behavior introduced in [8.4.0]{.title-ref}. Improved documentation #​13577: Clarify that pytest_generate_tests is discovered in test modules/classes; other hooks must be in conftest.py or plugins. Contributor-facing changes #​13480: Self-testing: fixed a few test failures when run with -Wdefault or a similar override. #​13547: Self-testing: corrected expected message for test_doctest_unexpected_exception in Python 3.14. #​13684: Make pytest's own testsuite insensitive to the presence of the CI environment variable -- by ogrisel{.interpreted-text role="user"}. v8.4.1 Compare Source pytest 8.4.1 (2025-06-17) Bug fixes #​13461: Corrected _pytest.terminal.TerminalReporter.isatty to support being called as a method. Before it was just a boolean which could break correct code when using -o log_cli=true). #​13477: Reintroduced pytest.PytestReturnNotNoneWarning{.interpreted-text role="class"} which was removed by accident in pytest [8.4]{.title-ref}. This warning is raised when a test functions returns a value other than None, which is often a mistake made by beginners. See return-not-none{.interpreted-text role="ref"} for more information. #​13497: Fixed compatibility with Twisted 25+. Improved documentation #​13492: Fixed outdated warning about faulthandler not working on Windows. v8.4.0 Compare Source pytest 8.4.0 (2025-06-02) Removals and backward incompatible breaking changes #​11372: Async tests will now fail, instead of warning+skipping, if you don't have any suitable plugin installed. #​12346: Tests will now fail, instead of raising a warning, if they return any value other than None. #​12874: We dropped support for Python 3.8 following its end of life (2024-10-07). #​12960: Test functions containing a yield now cause an explicit error. They have not been run since pytest 4.0, and were previously marked as an expected failure and deprecation warning. See the docs {.interpreted-text role="ref"} for more information. Deprecations (removal in next major release) #​10839: Requesting an asynchronous fixture without a [pytest_fixture_setup]{.title-ref} hook that resolves it will now give a DeprecationWarning. This most commonly happens if a sync test requests an async fixture. This should have no effect on a majority of users with async tests or fixtures using async pytest plugins, but may affect non-standard hook setups or autouse=True. For guidance on how to work around this warning see sync-test-async-fixture{.interpreted-text role="ref"}. New features #​11538: Added pytest.RaisesGroup{.interpreted-text role="class"} as an equivalent to pytest.raises{.interpreted-text role="func"} for expecting ExceptionGroup{.interpreted-text role="exc"}. Also adds pytest.RaisesExc{.interpreted-text role="class"} which is now the logic behind pytest.raises{.interpreted-text role="func"} and used as parameter to pytest.RaisesGroup{.interpreted-text role="class"}. RaisesGroup includes the ability to specify multiple different expected exceptions, the structure of nested exception groups, and flags for emulating except* {.interpreted-text role="ref"}. See assert-matching-exception-groups{.interpreted-text role="ref"} and docstrings for more information. #​12081: Added capteesys{.interpreted-text role="fixture"} to capture AND pass output to next handler set by --capture=. #​12504: pytest.mark.xfail{.interpreted-text role="func"} now accepts pytest.RaisesGroup{.interpreted-text role="class"} for the raises parameter when you expect an exception group. You can also pass a pytest.RaisesExc{.interpreted-text role="class"} if you e.g. want to make use of the check parameter. #​12713: New [--force-short-summary]{.title-ref} option to force condensed summary output regardless of verbosity level. This lets users still see condensed summary output of failures for quick reference in log files from job outputs, being especially useful if non-condensed output is very verbose. #​12749: pytest traditionally collects classes/functions in the test module namespace even if they are imported from another file. For example: contents of src/domain.py class Testament: ... contents of tests/test_testament.py from domain import Testament def test_testament(): ... ``` In this scenario with the default options, pytest will collect the class [Testament]{.title-ref} from [tests/test_testament.py]{.title-ref} because it starts with [Test]{.title-ref}, even though in this case it is a production class being imported in the test module namespace. This behavior can now be prevented by setting the new `collect_imported_tests`{.interpreted-text role="confval"} configuration option to `false`, which will make pytest collect classes/functions from test files **only** if they are defined in that file. \-- by `FreerGit`{.interpreted-text role="user"} #​12765: Thresholds to trigger snippet truncation can now be set with truncation_limit_lines{.interpreted-text role="confval"} and truncation_limit_chars{.interpreted-text role="confval"}. See truncation-params{.interpreted-text role="ref"} for more information. #​13125: console_output_style{.interpreted-text role="confval"} now supports times to show execution time of each test. #​13192: pytest.raises{.interpreted-text role="func"} will now raise a warning when passing an empty string to match, as this will match against any value. Use match="^$" if you want to check that an exception has no message. #​13192: pytest.raises{.interpreted-text role="func"} will now print a helpful string diff if matching fails and the match parameter has ^ and $ and is otherwise escaped. #​13192: You can now pass with pytest.raises(check=fn): {.interpreted-text role="func"}, where fn is a function which takes a raised exception and returns a boolean. The raises fails if no exception was raised (as usual), passes if an exception is raised and fn returns True (as well as match and the type matching, if specified, which are checked before), and propagates the exception if fn returns False (which likely also fails the test). #​13228: hidden-param{.interpreted-text role="ref"} can now be used in id of pytest.param{.interpreted-text role="func"} or in ids of Metafunc.parametrize {.interpreted-text role="py:func"}. It hides the parameter set from the test name. #​13253: New flag: --disable-plugin-autoload {.interpreted-text role="ref"} which works as an alternative to PYTEST_DISABLE_PLUGIN_AUTOLOAD{.interpreted-text role="envvar"} when setting environment variables is inconvenient; and allows setting it in config files with addopts{.interpreted-text role="confval"}. Improvements in existing functionality #​10224: pytest's short and long traceback styles (how-to-modifying-python-tb-printing{.interpreted-text role="ref"}) now have partial 657{.interpreted-text role="pep"} support and will show specific code segments in the traceback. ================================= FAILURES ================================= _______________________ test_gets_correct_tracebacks _______________________ test_tracebacks.py:12: in test_gets_correct_tracebacks assert manhattan_distance(p1, p2) == 1 ^^^^^^^^^^^^^^^^^^^^^^^^^^ test_tracebacks.py:6: in manhattan_distance return abs(point_1.x - point_2.x) + abs(point_1.y - point_2.y) ^^^^^^^^^ E AttributeError: 'NoneType' object has no attribute 'x' -- by ammaraskar{.interpreted-text role="user"} #​11118: Now pythonpath{.interpreted-text role="confval"} configures [$PYTHONPATH]{.title-ref} earlier than before during the initialization process, which now also affects plugins loaded via the [-p]{.title-ref} command-line option. -- by millerdev{.interpreted-text role="user"} #​11381: The type parameter of the parser.addini method now accepts ["int"]{.title-ref} and "float" parameters, facilitating the parsing of configuration values in the configuration file. Example: def pytest_addoption(parser): parser.addini("int_value", type="int", default=2, help="my int value") parser.addini("float_value", type="float", default=4.2, help="my float value") The [pytest.ini]{.title-ref} file: [pytest] int_value = 3 float_value = 5.4 #​11525: Fixtures are now clearly represented in the output as a "fixture object", not as a normal function as before, making it easy for beginners to catch mistakes such as referencing a fixture declared in the same module but not requested in the test function. -- by the-compiler{.interpreted-text role="user"} and glyphack{.interpreted-text role="user"} #​12426: A warning is now issued when pytest.mark.usefixtures ref{.interpreted-text role="ref"} is used without specifying any fixtures. Previously, empty usefixtures markers were silently ignored. #​12707: Exception chains can be navigated when dropped into Pdb in Python 3.13+. #​12736: Added a new attribute [name]{.title-ref} with the fixed value ["pytest tests"]{.title-ref} to the root tag [testsuites]{.title-ref} of the junit-xml generated by pytest. This attribute is part of many junit-xml specifications and is even part of the [junit-10.xsd]{.title-ref} specification that pytest's implementation is based on. #​12943: If a test fails with an exceptiongroup with a single exception, the contained exception will now be displayed in the short test summary info. #​12958: A number of unraisable {.interpreted-text role="ref"} enhancements: Set the unraisable hook as early as possible and unset it as late as possible, to collect the most possible number of unraisable exceptions. Call the garbage collector just before unsetting the unraisable hook, to collect any straggling exceptions. Collect multiple unraisable exceptions per test phase. Report the tracemalloc{.interpreted-text role="mod"} allocation traceback (if available). Avoid using a generator based hook to allow handling StopIteration{.interpreted-text role="class"} in test failures. Report the unraisable exception as the cause of the pytest.PytestUnraisableExceptionWarning{.interpreted-text role="class"} exception if raised. Compute the repr of the unraisable object in the unraisable hook so you get the latest information if available, and should help with resurrection of the object. #​13010: pytest.approx{.interpreted-text role="func"} now can compare collections that contain numbers and non-numbers mixed. #​13016: A number of threadexception {.interpreted-text role="ref"} enhancements: Set the excepthook as early as possible and unset it as late as possible, to collect the most possible number of unhandled exceptions from threads. Collect multiple thread exceptions per test phase. Report the tracemalloc{.interpreted-text role="mod"} allocation traceback (if available). Avoid using a generator based hook to allow handling StopIteration{.interpreted-text role="class"} in test failures. Report the thread exception as the cause of the pytest.PytestUnhandledThreadExceptionWarning{.interpreted-text role="class"} exception if raised. Extract the name of the thread object in the excepthook which should help with resurrection of the thread. #​13031: An empty parameter set as in pytest.mark.parametrize([], ids=idfunc) will no longer trigger a call to idfunc with internal objects. #​13115: Allows supplying ExceptionGroup[Exception] and BaseExceptionGroup[BaseException] to pytest.raises to keep full typing on ExceptionInfo {.interpreted-text role="class"}: with pytest.raises(ExceptionGroup[Exception]) as exc_info: some_function() Parametrizing with other exception types remains an error - we do not check the types of child exceptions and thus do not permit code that might look like we do. #​13122: The --stepwise mode received a number of improvements: It no longer forgets the last failed test in case pytest is executed later without the flag. This enables the following workflow: Execute pytest with --stepwise, pytest then stops at the first failing test; Iteratively update the code and run the test in isolation, without the --stepwise flag (for example in an IDE), until it is fixed. Execute pytest with --stepwise again and pytest will continue from the previously failed test, and if it passes, continue on to the next tests. Previously, at step 3, pytest would start from the beginning, forgetting the previously failed test. This change however might cause issues if the --stepwise mode is used far apart in time, as the state might get stale, so the internal state will be reset automatically in case the test suite changes (for now only the number of tests are considered for this, we might change/improve this on the future). New --stepwise-reset/--sw-reset flag, allowing the user to explicitly reset the stepwise state and restart the workflow from the beginning. #​13308: Added official support for Python 3.14. #​13380: Fix ExceptionGroup{.interpreted-text role="class"} traceback filtering to exclude pytest internals. #​13415: The author metadata of the BibTex example is now correctly formatted with last names following first names. An example of BibLaTex has been added. BibTex and BibLaTex examples now clearly indicate that what is cited is software. -- by willynilly{.interpreted-text role="user"} #​13420: Improved test collection performance by optimizing path resolution used in FSCollector. #​13457: The error message about duplicate parametrization no longer displays an internal stack trace. #​4112: Using pytest.mark.usefixtures {.interpreted-text role="ref"} on pytest.param{.interpreted-text role="func"} now produces an error instead of silently doing nothing. #​5473: Replace [:]{.title-ref} with [;]{.title-ref} in the assertion rewrite warning message so it can be filtered using standard Python warning filters before calling pytest.main{.interpreted-text role="func"}. [#​6985](https://redirect.github.com/pytest-dev/pytest/issues/6985): Improved `pytest.approx`{.interpreted-text role="func"} to enhance the readability of value ranges and tolerances between 0.001 and 1000. : - The [repr]{.title-ref} method now provides clearer output for values within those ranges, making it easier to interpret the results. - Previously, the output for those ranges of values and tolerances was displayed in scientific notation (e.g., [42 ± 1.0e+00]{.title-ref}). The updated method now presents the tolerance as a decimal for better readability (e.g., [42 ± 1]{.title-ref}). Example: **Previous Output:** ``` console >>> pytest.approx(42, abs=1) 42 ± 1.0e+00 ``` **Current Output:** ``` console >>> pytest.approx(42, abs=1) 42 ± 1 ``` \-- by `fazeelghafoor`{.interpreted-text role="user"} #​7683: The formerly optional pygments dependency is now required, causing output always to be source-highlighted (unless disabled via the --code-highlight=no CLI option). Bug fixes #​10404: Apply filterwarnings from config/cli as soon as possible, and revert them as late as possible so that warnings as errors are collected throughout the pytest run and before the unraisable and threadexcept hooks are removed. This allows very late warnings and unraisable/threadexcept exceptions to fail the test suite. This also changes the warning that the lsof plugin issues from PytestWarning to the new warning PytestFDWarning so it can be more easily filtered. #​11067: The test report is now consistent regardless if the test xfailed via pytest.mark.xfail {.interpreted-text role="ref"} or pytest.fail{.interpreted-text role="func"}. Previously, xfailed tests via the marker would have the string "reason: " prefixed to the message, while those xfailed via the function did not. The prefix has been removed. #​12008: In 11220{.interpreted-text role="pr"}, an unintended change in reordering was introduced by changing the way indices were assigned to direct params. More specifically, before that change, the indices of direct params to metafunc's callspecs were assigned after all parametrizations took place. Now, that change is reverted. #​12863: Fix applying markers, including pytest.mark.parametrize {.interpreted-text role="ref"} when placed above [@​staticmethod]{.title-ref} or [@​classmethod]{.title-ref}. #​12929: Handle StopIteration from test cases, setup and teardown correctly. #​12938: Fixed --durations-min argument not respected if -vv is used. #​12946: Fixed missing help for pdb{.interpreted-text role="mod"} commands wrapped by pytest -- by adamchainz{.interpreted-text role="user"}. #​12981: Prevent exceptions in pytest.Config.add_cleanup{.interpreted-text role="func"} callbacks preventing further cleanups. #​13047: Restore pytest.approx{.interpreted-text role="func"} handling of equality checks between [bool]{.title-ref} and [numpy.bool_]{.title-ref} types. Comparing [bool]{.title-ref} and [numpy.bool_]{.title-ref} using pytest.approx{.interpreted-text role="func"} accidentally changed in version [8.3.4]{.title-ref} and [8.3.5]{.title-ref} to no longer match: >>> import numpy as np >>> from pytest import approx >>> [np.True_, np.True_] == pytest.approx([True, True]) False This has now been fixed: >>> [np.True_, np.True_] == pytest.approx([True, True]) True #​13119: Improved handling of invalid regex patterns for filter warnings by providing a clear error message. #​13175: The diff is now also highlighted correctly when comparing two strings. #​13248: Fixed an issue where passing a scope in Metafunc.parametrize {.interpreted-text role="py:func"} with indirect=True could result in other fixtures being unable to depend on the parametrized fixture. #​13291: Fixed repr of attrs objects in assertion failure messages when using attrs>=25.2. #​13312: Fixed a possible KeyError crash on PyPy during collection of tests involving higher-scoped parameters. #​13345: Fix type hints for pytest.TestReport.when{.interpreted-text role="attr"} and pytest.TestReport.location{.interpreted-text role="attr"}. #​13377: Fixed handling of test methods with positional-only parameter syntax. Now, methods are supported that formally define self as positional-only and/or fixture parameters as keyword-only, e.g.: class TestClass: def test_method(self, /, *, fixture): ... Before, this caused an internal error in pytest. #​13384: Fixed an issue where pytest could report negative durations. #​13420: Added lru_cache to nodes._check_initialpaths_for_relpath. #​9037: Honor disable_test_id_escaping_and_forfeit_all_rights_to_community_support{.interpreted-text role="confval"} when escaping ids in parametrized tests. Improved documentation #​12535: [This example]{.title-ref} showed print statements that do not exactly reflect what the different branches actually do. The fix makes the example more precise. #​13218: Pointed out in the pytest.approx{.interpreted-text role="func"} documentation that it considers booleans unequal to numeric zero or one. #​13221: Improved grouping of CLI options in the --help output. #​6649: Added ~pytest.TerminalReporter{.interpreted-text role="class"} to the api-reference{.interpreted-text role="ref"} documentation page. #​8612: Add a recipe for handling abstract test classes in the documentation. A new example has been added to the documentation to demonstrate how to use a mixin class to handle abstract test classes without manually setting the __test__ attribute for subclasses. This ensures that subclasses of abstract test classes are automatically collected by pytest. Packaging updates and notes for downstreams #​13317: Specified minimum allowed versions of colorama, iniconfig, and packaging; and bumped the minimum allowed version of exceptiongroup for python_version<'3.11' from a release candidate to a full release. Contributor-facing changes #​12017: Mixed internal improvements: Migrate formatting to f-strings in some tests. Use type-safe constructs in JUnitXML tests. MovedMockTiming into _pytest.timing. -- by RonnyPfannschmidt{.interpreted-text role="user"} #​12647: Fixed running the test suite with the hypothesis pytest plugin. Miscellaneous internal changes #​6649: Added ~pytest.TerminalReporter{.interpreted-text role="class"} to the public pytest API, as it is part of the signature of the pytest_terminal_summary{.interpreted-text role="hook"} hook. v8.3.5 Compare Source pytest 8.3.5 (2025-03-02) Bug fixes #​11777: Fixed issue where sequences were still being shortened even with -vv verbosity. #​12888: Fixed broken input when using Python 3.13+ and a libedit build of Python, such as on macOS or with uv-managed Python binaries from the python-build-standalone project. This could manifest e.g. by a broken prompt when using Pdb, or seeing empty inputs with manual usage of input() and suspended capturing. #​13026: Fixed AttributeError{.interpreted-text role="class"} crash when using --import-mode=importlib when top-level directory same name as another module of the standard library. #​13053: Fixed a regression in pytest 8.3.4 where, when using --import-mode=importlib, a directory containing py file with the same name would cause an ImportError #​13083: Fixed issue where pytest could crash if one of the collected directories got removed during collection. Improved documentation #​12842: Added dedicated page about using types with pytest. See types{.interpreted-text role="ref"} for detailed usage. Contributor-facing changes #​13112: Fixed selftest failures in test_terminal.py with Pygments >= 2.19.0 #​13256: Support for Towncrier versions released in 2024 has been re-enabled when building Sphinx docs -- by webknjaz{.interpreted-text role="user"}. v8.3.4 Compare Source pytest 8.3.4 (2024-12-01) Bug fixes #​12592: Fixed KeyError{.interpreted-text role="class"} crash when using --import-mode=importlib in a directory layout where a directory contains a child directory with the same name. #​12818: Assertion rewriting now preserves the source ranges of the original instructions, making it play well with tools that deal with the AST, like executing. #​12849: ANSI escape codes for colored output now handled correctly in pytest.fail{.interpreted-text role="func"} with [pytrace=False]{.title-ref}. #​9353: pytest.approx{.interpreted-text role="func"} now uses strict equality when given booleans. Improved documentation #​10558: Fix ambiguous docstring of pytest.Config.getoption{.interpreted-text role="func"}. #​10829: Improve documentation on the current handling of the --basetemp option and its lack of retention functionality (temporary directory location and retention{.interpreted-text role="ref"}). #​12866: Improved cross-references concerning the recwarn{.interpreted-text role="fixture"} fixture. #​12966: Clarify filterwarnings{.interpreted-text role="ref"} docs on filter precedence/order when using multiple @pytest.mark.filterwarnings {.interpreted-text role="ref"} marks. Contributor-facing changes #​12497: Fixed two failing pdb-related tests on Python 3.13. v8.3.3 Compare Source pytest 8.3.3 (2024-09-09) Bug fixes #​12446: Avoid calling @property (and other instance descriptors) during fixture discovery -- by asottile{.interpreted-text role="user"} #​12659: Fixed the issue of not displaying assertion failure differences when using the parameter --import-mode=importlib in pytest>=8.1. #​12667: Fixed a regression where type change in [ExceptionInfo.errisinstance]{.title-ref} caused [mypy]{.title-ref} to fail. #​12744: Fixed typing compatibility with Python 3.9 or less -- replaced [typing.Self]{.title-ref} with [typing_extensions.Self]{.title-ref} -- by Avasam{.interpreted-text role="user"} #​12745: Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments. #​6682: Fixed bug where the verbosity levels where not being respected when printing the "msg" part of failed assertion (as in assert condition, msg). #​9422: Fix bug where disabling the terminal plugin via -p no:terminal would cause crashes related to missing the verbose option. -- by GTowers1{.interpreted-text role="user"} Improved documentation #​12663: Clarify that the [pytest_deselected]{.title-ref} hook should be called from [pytest_collection_modifyitems]{.title-ref} hook implementations when items are deselected. #​12678: Remove erroneous quotes from [tmp_path_retention_policy]{.title-ref} example in docs. Miscellaneous internal changes #​12769: Fix typos discovered by codespell and add codespell to pre-commit hooks. Configuration 📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied. ♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 Ignore: Close this PR and you won't be reminded about this update again. If you want to rebase/retry this PR, check this box This PR was generated by Mend Renovate. View the repository job log.

Open Graph Description: This PR contains the following updates: Package Change Age Confidence pytest (changelog) ==8.3.2 → ==8.4.2 Release Notes pytest-dev/pytest (pytest) v8.4.2 Compare Source pytest 8.4.2 ...

X Description: This PR contains the following updates: Package Change Age Confidence pytest (changelog) ==8.3.2 → ==8.4.2 Release Notes pytest-dev/pytest (pytest) v8.4.2 Compare Source pytest 8.4.2 ...

Opengraph URL: https://github.com/protoconf/client-python/pull/28

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:0a5847ae-0434-2742-b0ee-e05d5b0df48a
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC1CC:374910:1DBE9A6:27BAA91:69815A27
html-safe-nonced9f803009196b9d84c28bf8e3bc6b8f361782672a3142516da28be192b9eb039
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDMUNDOjM3NDkxMDoxREJFOUE2OjI3QkFBOTE6Njk4MTVBMjciLCJ2aXNpdG9yX2lkIjoiNzU0Mjk1ODYyODAwMTYzNDg1NSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacfdc7528ade7f7df2ed5455befb74d2b9e76f5b0fde369b72f56f491e6b60af73
hovercard-subject-tagpull_request:2063494936
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/protoconf/client-python/pull/28/files
twitter:imagehttps://avatars.githubusercontent.com/in/2740?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/2740?s=400&v=4
og:image:altThis PR contains the following updates: Package Change Age Confidence pytest (changelog) ==8.3.2 → ==8.4.2 Release Notes pytest-dev/pytest (pytest) v8.4.2 Compare Source pytest 8.4.2 ...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonee137814e266030874fd2c86863529d0622b13889eeda04148c57654b6ea84ad6
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/protoconf/client-python git https://github.com/protoconf/client-python.git
octolytics-dimension-user_id51154987
octolytics-dimension-user_loginprotoconf
octolytics-dimension-repository_id820059494
octolytics-dimension-repository_nwoprotoconf/client-python
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id820059494
octolytics-dimension-repository_network_root_nwoprotoconf/client-python
turbo-body-classeslogged-out env-production page-responsive
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releaseac5d0ac5757d6140ccfa217c1ba554cd2d0b51b1
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fprotoconf%2Fclient-python%2Fpull%2F28%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fprotoconf%2Fclient-python%2Fpull%2F28%2Ffiles
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=protoconf%2Fclient-python
Reloadhttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files
Reloadhttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files
Reloadhttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files
protoconf https://patch-diff.githubusercontent.com/protoconf
client-pythonhttps://patch-diff.githubusercontent.com/protoconf/client-python
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fprotoconf%2Fclient-python
Fork 0 https://patch-diff.githubusercontent.com/login?return_to=%2Fprotoconf%2Fclient-python
Star 3 https://patch-diff.githubusercontent.com/login?return_to=%2Fprotoconf%2Fclient-python
Code https://patch-diff.githubusercontent.com/protoconf/client-python
Issues 1 https://patch-diff.githubusercontent.com/protoconf/client-python/issues
Pull requests 15 https://patch-diff.githubusercontent.com/protoconf/client-python/pulls
Actions https://patch-diff.githubusercontent.com/protoconf/client-python/actions
Projects 0 https://patch-diff.githubusercontent.com/protoconf/client-python/projects
Security 0 https://patch-diff.githubusercontent.com/protoconf/client-python/security
Insights https://patch-diff.githubusercontent.com/protoconf/client-python/pulse
Code https://patch-diff.githubusercontent.com/protoconf/client-python
Issues https://patch-diff.githubusercontent.com/protoconf/client-python/issues
Pull requests https://patch-diff.githubusercontent.com/protoconf/client-python/pulls
Actions https://patch-diff.githubusercontent.com/protoconf/client-python/actions
Projects https://patch-diff.githubusercontent.com/protoconf/client-python/projects
Security https://patch-diff.githubusercontent.com/protoconf/client-python/security
Insights https://patch-diff.githubusercontent.com/protoconf/client-python/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2Fprotoconf%2Fclient-python%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2Fprotoconf%2Fclient-python%2Fissues%2Fnew%2Fchoose
renovatehttps://patch-diff.githubusercontent.com/apps/renovate
mainhttps://patch-diff.githubusercontent.com/protoconf/client-python/tree/main
renovate/pytest-8.xhttps://patch-diff.githubusercontent.com/protoconf/client-python/tree/renovate/pytest-8.x
Conversation 0 https://patch-diff.githubusercontent.com/protoconf/client-python/pull/28
Commits 1 https://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/commits
Checks 2 https://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/checks
Files changed https://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files
Please reload this pagehttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files
Update dependency pytest to v8.4.2 https://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files#top
Show all changes 1 commit https://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files
d4c1f3a Update dependency pytest to v8.4.2 renovate[bot] Sep 4, 2025 https://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/commits/d4c1f3a80a2a8f7f00cd845251fa302e3219473b
Clear filters https://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files
Please reload this pagehttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files
Please reload this pagehttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files
requirements-test.txthttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files#diff-685da804fbcac569d75387e475e57d1de687a54c6c41b3aa4057694cfb5abc4b
View file https://patch-diff.githubusercontent.com/protoconf/client-python/blob/d4c1f3a80a2a8f7f00cd845251fa302e3219473b/requirements-test.txt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files#diff-685da804fbcac569d75387e475e57d1de687a54c6c41b3aa4057694cfb5abc4b
https://patch-diff.githubusercontent.com/protoconf/client-python/pull/28/files#diff-685da804fbcac569d75387e475e57d1de687a54c6c41b3aa4057694cfb5abc4b
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.