Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 28, 2025

Bumps the testing group with 3 updates: pyansys-tools-report, pytest-reportlog and pytest.

Updates pyansys-tools-report from 0.8.3 to 0.9.0

Commits

Updates pytest-reportlog from 0.4.0 to 1.0.0

Changelog

Sourced from pytest-reportlog's changelog.

1.0.0 (2025-11-11)

  • [#90](https://github.com/pytest-dev/pytest-reportlog/issues/90) <https://github.com/pytest-dev/pytest-reportlog/issues/90>_: Fix jsonl output for pytest subtests (introduced in pytest 9.0).
  • Added official support for Python 3.12, 3.13, and 3.14.
  • Dropped support for EOL Python 3.7, 3.8, and 3.9.
Commits
  • 65300b4 Publish GitHub release
  • dbeb7ca Update classifiers to production/stable
  • 845462b Release 1.0.0
  • 38c59cc Fix subtests jsonl report to be consistent with other reports (#91)
  • 91af148 Add Python 3.14 and drop Python 3.9 (EOL(
  • 668cdf7 Fix subtests jsonl report to be consistent with other reports
  • 986dbfb [pre-commit.ci] pre-commit autoupdate (#89)
  • a0d5eba Bump actions/download-artifact in the github-actions group (#88)
  • bc73652 Bump hynek/build-and-inspect-python-package in the github-actions group (#87)
  • e63fe89 [pre-commit.ci] pre-commit autoupdate (#86)
  • Additional commits viewable in compare view

Updates pytest from 8.4.2 to 9.0.1

Release notes

Sourced from pytest's releases.

9.0.1

pytest 9.0.1 (2025-11-12)

Bug fixes

  • #13895: Restore support for skipping tests via raise 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 desired version string can be passed into its package_env through the SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST environment variable as a part of the release process -- by webknjaz.

Contributor-facing changes

  • #13891, #13942: The CI/CD part of the release automation is now capable of creating GitHub Releases without having a Git checkout on disk -- by bluetech and webknjaz.
  • #13933: The tox configuration has been adjusted to make sure the desired version string can be passed into its package_env through the SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST environment variable as a part of the release process -- by webknjaz.

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:

    def contains_docstring(p: Path) -> bool:
        """Return True if the given Python file contains a top-level docstring."""
        ...
    def test_py_files_contain_docstring(subtests: pytest.Subtests) -> None:
    for path in Path.cwd().glob("*.py"):
    with subtests.test(path=str(path)):
    assert contains_docstring(path)

... (truncated)

Commits
  • d1b64aa Prepare release version 9.0.1
  • 0a497c7 regendoc: remove CI environment variables (#13950) (#13951)
  • a9f7e6e 🧪 Run gh 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 in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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

@dependabot dependabot bot added dependencies maintenance General maintenance of the repo (libraries, cicd, etc) labels Nov 28, 2025
@dependabot dependabot bot requested a review from a team as a code owner November 28, 2025 00:03
@dependabot dependabot bot added dependencies maintenance General maintenance of the repo (libraries, cicd, etc) labels Nov 28, 2025
@codecov
Copy link

codecov bot commented Nov 28, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 91.37%. Comparing base (d3c0c5d) to head (be8cec0).
⚠️ Report is 2 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #4328      +/-   ##
==========================================
- Coverage   91.41%   91.37%   -0.04%     
==========================================
  Files         193      193              
  Lines       15745    15745              
==========================================
- Hits        14393    14387       -6     
- Misses       1352     1358       +6     
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Bumps the testing group with 3 updates: [pyansys-tools-report](https://github.com/ansys/pyansys-tools-report), [pytest-reportlog](https://github.com/pytest-dev/pytest-reportlog) and [pytest](https://github.com/pytest-dev/pytest).


Updates `pyansys-tools-report` from 0.8.3 to 0.9.0
- [Release notes](https://github.com/ansys/pyansys-tools-report/releases)
- [Commits](ansys/pyansys-tools-report@v0.8.3...v0.9.0)

Updates `pytest-reportlog` from 0.4.0 to 1.0.0
- [Release notes](https://github.com/pytest-dev/pytest-reportlog/releases)
- [Changelog](https://github.com/pytest-dev/pytest-reportlog/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-reportlog@v0.4.0...v1.0.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: pyansys-tools-report
  dependency-version: 0.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: testing
- dependency-name: pytest-reportlog
  dependency-version: 1.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: pytest
  dependency-version: 9.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: testing
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/testing-e22d471c18 branch from 37b50d3 to 3ba5284 Compare November 28, 2025 07:58
@germa89 germa89 merged commit 3a6e04a into main Nov 28, 2025
90 of 95 checks passed
@germa89 germa89 deleted the dependabot/pip/testing-e22d471c18 branch November 28, 2025 12:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies maintenance General maintenance of the repo (libraries, cicd, etc)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants