Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Comments

Bump the pytest group across 1 directory with 3 updates#8010

Open
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/pip/pytest-a4b75fd499
Open

Bump the pytest group across 1 directory with 3 updates#8010
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/pip/pytest-a4b75fd499

Conversation

@dependabot
Copy link
Contributor

@dependabotdependabotbot commented on behalf ofgithubDec 2, 2025
edited
Loading

Bumps the pytest group with 3 updates in the / directory:hypothesis,pytest-asyncio andpytest.

Updateshypothesis from 6.130.6 to 6.148.5

Release notes

Sourced fromhypothesis's releases.

Hypothesis for Python - version 6.148.5

This patch improves the error message for "FlakyStrategyDefinition"when the precondition for a rule is flaky (issue#4206).

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.148.4

This patch improves the type annotations for "basic_indices()". Thereturn type now accurately reflects the "allow_ellipsis" and"allow_newaxis" parameters, excluding "EllipsisType" or "None" fromthe union when those index types are disabled (issue#4607).

Additionally, "assume()" now has overloaded type annotations:"assume(True)" returns "Literal[True]", while "assume(False)" and"assume(None)" return "NoReturn".

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.148.3

Clean up some internal code.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.148.2

Document "fuzz_one_input()".

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.148.1

This patch updates our vendored list of top-level domains, which isused by the provisional "domains()" strategy.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.148.0

Calling "register_profile()" from within a test decorated with"@​settings" is now deprecated, to avoid confusion about which settingsare used as the baseline for the new profile.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.147.0

This release drops support for nose, which ceased development 9 yearsago and does not support Python 3.10 or newer.

Hypothesis still supports nose2. While we do not test "nose2" in ourCI, we will fix any bugs that get reported.

The canonical version of these notes (with links) is on readthedocs.

... (truncated)

Commits
  • 3605694 Bump hypothesis-python version to 6.148.5 and update changelog
  • 921f246 Merge pull request#4615 from Zac-HD/claude/improve-stateful-error-message-01...
  • 0e4d4c7 Add _flaky_state handling and test for flaky rule strategy
  • 41f0329 Improve FlakyStrategyDefinition error message for stateful tests
  • d812e5c Merge pull request#4613 from Zac-HD/claude/fix-stack-depth-warning-019yVLCyc...
  • a0bd28f Enable stacklevel test for@​st.composite on all Python versions
  • 075e2ac Bump hypothesis-python version to 6.148.4 and update changelog
  • e05b372 Merge pull request#4611 from Zac-HD/claude/fix-hypothesis-4607-018dHECpz3mwL...
  • 799c0c9 Fix type test expectations for basic_indices overloads
  • 1308bab Fix import order in numpy.py
  • Additional commits viewable incompare view

Updatespytest-asyncio from 1.2.0 to 1.3.0

Release notes

Sourced frompytest-asyncio's releases.

pytest-asyncio 1.3.0

1.3.0 - 2025-11-10

Removed

  • Support for Python 3.9 (#1278)

Added

  • Support for pytest 9 (#1279)

Notes for Downstream Packagers

  • Tested Python versions include free threaded Python 3.14t (#1274)
  • Tests are run in the same pytest process, instead of spawning a subprocess withpytest.Pytester.runpytest_subprocess. This prevents the test suite from accidentally using a system installation of pytest-asyncio, which could result in test errors. (#1275)
Commits
  • 2e9695f docs: Compile changelog for v1.3.0
  • dd0e9ba docs: Reference correct issue in news fragment.
  • 4c31abe Build(deps): Bump nh3 from 0.3.1 to 0.3.2
  • 13e9477 Link to migration guides from changelog
  • 4d2cf3c tests: handle Python 3.14 DefaultEventLoopPolicy deprecation warnings
  • ee3549b test: Remove obsolete test for the event_loop fixture.
  • 7a67c82 tests: Fix failing test by preventing warning conversion to error.
  • a17b689 test: add pytest config to isolated test directories
  • 18afc9d fix(tests): replace runpytest_subprocess with runpytest
  • cdc6bd1 Add support for pytest 9 and drop Python 3.9 support
  • Additional commits viewable incompare view

Updatespytest from 8.4.2 to 9.0.1

Release notes

Sourced frompytest's releases.

9.0.1

pytest 9.0.1 (2025-11-12)

Bug fixes

  • #13895: Restore support for skipping tests viaraise unittest.SkipTest.
  • #13896: The terminal progress plugin added in pytest 9.0 is now automatically disabled when iTerm2 is detected, it generated desktop notifications instead of the desired functionality.
  • #13904: Fixed the TOML type of the verbosity settings in the API reference from number to string.
  • #13910: Fixed UserWarning: Do not expect file_or_dir on some earlier Python 3.12 and 3.13 point versions.

Packaging updates and notes for downstreams

  • #13933: The tox configuration has been adjusted to make sure the desiredversion string can be passed into itspackage_env throughtheSETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST environmentvariable as a part of the release process -- bywebknjaz.

Contributor-facing changes

  • #13891,#13942: The CI/CD part of the release automation is now capable ofcreating GitHub Releases without having a Git checkout ondisk -- bybluetech andwebknjaz.
  • #13933: The tox configuration has been adjusted to make sure the desiredversion string can be passed into itspackage_env throughtheSETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST environmentvariable as a part of the release process -- bywebknjaz.

9.0.0

pytest 9.0.0 (2025-11-05)

New features

  • #1367:Support for subtests has been added.

    subtests <subtests> are an alternative to parametrization, useful in situations where the parametrization values are not all known at collection time.

    Example:

    defcontains_docstring(p:Path)->bool:"""Return True if the given Python file contains a top-level docstring."""    ...deftest_py_files_contain_docstring(subtests:pytest.Subtests)->None:forpathinPath.cwd().glob("*.py"):withsubtests.test(path=str(path)):assertcontains_docstring(path)

... (truncated)

Commits
  • d1b64aa Prepare release version 9.0.1
  • 0a497c7 regendoc: remove CI environment variables (#13950) (#13951)
  • a9f7e6e 🧪 Rungh release w/o Git in CI/CD (#13942) (#13947)
  • 2682a66 Merge pull request#13944 from pytest-dev/patchback/backports/9.0.x/bef7d34f1...
  • a999997 Merge pull request#13941 from nicoddemus/min-pre-commit-version
  • 4bd63a0 Merge pull request#13935 from pytest-dev/patchback/backports/9.0.x/ce8b8a7b4...
  • 15f93b3 Merge pull request#13933 from webknjaz/maintenance/tox-pep517-env-setuptools...
  • 0fa11ae Merge pull request#13927 from pytest-dev/patchback/backports/9.0.x/3d8075743...
  • fa45470 Merge pull request#13926 from pytest-dev/patchback/backports/9.0.x/d587e0cf8...
  • b4e3973 Merge pull request#13922 from bluetech/fix-argparse-userwarning
  • Additional commits viewable incompare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency NameIgnore Conditions
pytest[>= 8.2.1.a, < 8.2.2]

You can trigger a rebase of this PR by commenting@dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabotdependabotbot added dependenciesPull requests that update a dependency file pythonPull requests that update Python code labelsDec 2, 2025
@mhils
Copy link
Member

@dependabot ignore hypothesis minor version

@dependabot@github
Copy link
ContributorAuthor

dependabotbot commented on behalf ofgithubDec 2, 2025

OK, I won't notify you about version 6.148.x of hypothesis again, unless you unignore it.

Bumps the pytest group with 3 updates in the / directory: [hypothesis](https://github.com/HypothesisWorks/hypothesis), [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) and [pytest](https://github.com/pytest-dev/pytest).Updates `hypothesis` from 6.130.6 to 6.148.5- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.130.6...hypothesis-python-6.148.5)Updates `pytest-asyncio` from 1.2.0 to 1.3.0- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)- [Commits](pytest-dev/pytest-asyncio@v1.2.0...v1.3.0)Updates `pytest` from 8.4.2 to 9.0.1- [Release notes](https://github.com/pytest-dev/pytest/releases)- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)- [Commits](pytest-dev/pytest@8.4.2...9.0.1)---updated-dependencies:- dependency-name: hypothesis  dependency-version: 6.148.5  dependency-type: direct:development  update-type: version-update:semver-minor  dependency-group: pytest- dependency-name: pytest-asyncio  dependency-version: 1.3.0  dependency-type: direct:development  update-type: version-update:semver-minor  dependency-group: pytest- dependency-name: pytest  dependency-version: 9.0.1  dependency-type: direct:development  update-type: version-update:semver-major  dependency-group: pytest...Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotbotforce-pushed thedependabot/pip/pytest-a4b75fd499 branch from119f245 tof429544CompareDecember 2, 2025 14:34
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Labels

dependenciesPull requests that update a dependency filepythonPull requests that update Python code

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant

@mhils

[8]ページ先頭

©2009-2026 Movatter.jp