From 39dbeea9ae49763cccbe61bb234d7d4150859332 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 12:10:21 +0000 Subject: [PATCH 1/2] Bump the pip group with 5 updates Bumps the pip group with 5 updates: | Package | From | To | | --- | --- | --- | | [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.138.11` | `6.138.15` | | [pytest](https://github.com/pytest-dev/pytest) | `8.4.1` | `8.4.2` | | [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `6.2.1` | `6.3.0` | | [pytest-rerunfailures](https://github.com/pytest-dev/pytest-rerunfailures) | `16.0` | `16.0.1` | | [ruff](https://github.com/astral-sh/ruff) | `0.9.3` | `0.12.12` | Updates `hypothesis` from 6.138.11 to 6.138.15 - [Release notes](https://github.com/HypothesisWorks/hypothesis/releases) - [Commits](https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.138.11...hypothesis-python-6.138.15) Updates `pytest` from 8.4.1 to 8.4.2 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.4.1...8.4.2) Updates `pytest-cov` from 6.2.1 to 6.3.0 - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest-cov/compare/v6.2.1...v6.3.0) Updates `pytest-rerunfailures` from 16.0 to 16.0.1 - [Changelog](https://github.com/pytest-dev/pytest-rerunfailures/blob/master/CHANGES.rst) - [Commits](https://github.com/pytest-dev/pytest-rerunfailures/compare/16.0...16.0.1) Updates `ruff` from 0.9.3 to 0.12.12 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.9.3...0.12.12) --- updated-dependencies: - dependency-name: hypothesis dependency-version: 6.138.15 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: pip - dependency-name: pytest dependency-version: 8.4.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: pip - dependency-name: pytest-cov dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pip - dependency-name: pytest-rerunfailures dependency-version: 16.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: pip - dependency-name: ruff dependency-version: 0.12.12 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pip ... Signed-off-by: dependabot[bot] --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f0ee291..47edf89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,13 +7,13 @@ version = "0" dev = [ "anyio==4.10.0", "faker==37.6.0", - "hypothesis==6.138.11", + "hypothesis==6.138.15", "mypy==1.17.1", "polyfactory==2.22.2", - "pytest==8.4.1", - "pytest-cov==6.2.1", - "pytest-rerunfailures==16.0", - "ruff==0.9.3", + "pytest==8.4.2", + "pytest-cov==6.3.0", + "pytest-rerunfailures==16.0.1", + "ruff==0.12.12", "uvloop==0.21.0", ] From 1f14929e8e1f2c60579ad6d7a53928846deb4944 Mon Sep 17 00:00:00 2001 From: Lev Vereshchagin Date: Tue, 9 Sep 2025 10:19:53 +0300 Subject: [PATCH 2/2] Increase pytest rerun attempts from 2 to 4 in pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 47edf89..44bf75c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ ignore = [ extend-per-file-ignores = { "*/test_*/*" = ["S101", "SLF001", "ARG", "PLR6301"] } [tool.pytest.ini_options] -addopts = "--cov -s -vv --reruns 2 --only-rerun FailedAllConnectAttemptsError" +addopts = "--cov -s -vv --reruns 4 --only-rerun FailedAllConnectAttemptsError" [tool.coverage.report] skip_covered = true