chore(deps)(deps): bump the testing group across 1 directory with 5 updates#119
chore(deps)(deps): bump the testing group across 1 directory with 5 updates#119dependabot[bot] wants to merge 1 commit into
Conversation
…pdates Bumps the testing group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [pytest](https://github.com/pytest-dev/pytest) | `8.3.5` | `9.0.3` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `1.3.0` | `1.4.0` | | [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `6.0.0` | `7.1.0` | | [faker](https://github.com/joke2k/faker) | `40.11.0` | `40.19.1` | | [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.151.10` | `6.155.1` | Updates `pytest` from 8.3.5 to 9.0.3 - [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.3.5...9.0.3) Updates `pytest-asyncio` from 1.3.0 to 1.4.0 - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases) - [Commits](pytest-dev/pytest-asyncio@v1.3.0...v1.4.0) Updates `pytest-cov` from 6.0.0 to 7.1.0 - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](pytest-dev/pytest-cov@v6.0.0...v7.1.0) Updates `faker` from 40.11.0 to 40.19.1 - [Release notes](https://github.com/joke2k/faker/releases) - [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md) - [Commits](joke2k/faker@v40.11.0...v40.19.1) Updates `hypothesis` from 6.151.10 to 6.155.1 - [Release notes](https://github.com/HypothesisWorks/hypothesis/releases) - [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.151.10...v6.155.1) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.0.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: testing - dependency-name: pytest-asyncio dependency-version: 1.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: testing - dependency-name: pytest-cov dependency-version: 7.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: testing - dependency-name: faker dependency-version: 40.19.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: testing - dependency-name: hypothesis dependency-version: 6.155.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: testing ... Signed-off-by: dependabot[bot] <support@github.com>
AssigneesThe following users could not be added as assignees: LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
|
✅ PR size is within recommended limits |
📝 WalkthroughWalkthroughThe pull request updates testing framework dependencies across three configuration files: pytest is bumped from 9.0.2 to 9.0.3 in pyproject.toml, and pytest-cov is updated from 6.0.0 to 7.1.0 in both requirements-ci.txt and requirements-dev.txt. ChangesTest Framework Dependencies
🎯 1 (Trivial) | ⏱️ ~5 minutes
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
|
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@pyproject.toml`:
- Line 26: pyproject.toml currently pins pytest as "pytest = \"9.0.3\"" while
requirements-ci.txt and requirements-dev.txt pin "pytest==8.3.5"; update the two
requirements files to match the pyproject version (or change pyproject to 8.3.5)
so all three files use the exact same pytest version; edit requirements-ci.txt
and requirements-dev.txt to replace "pytest==8.3.5" with "pytest==9.0.3" (or
change pyproject.toml's pytest string to "8.3.5" if you prefer downgrading) and
run a quick install/test to confirm no dependency conflicts.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 2b454260-5753-4cda-b75d-54012bb3bacb
⛔ Files ignored due to path filters (1)
poetry.lockis excluded by!**/*.lock
📒 Files selected for processing (3)
pyproject.tomlrequirements-ci.txtrequirements-dev.txt
|
|
||
| [tool.poetry.group.dev.dependencies] | ||
| pytest = "9.0.2" | ||
| pytest = "9.0.3" |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Read-only verification: list pytest-related pins/specs across manifests
set -euo pipefail
for f in pyproject.toml requirements-ci.txt requirements-dev.txt; do
echo "=== $f ==="
rg -n '^\s*pytest([-\w]*)\s*(=|==|>=)' "$f" || true
doneRepository: cryptoxdog/Cognitive.Engine.Graphs
Length of output: 534
Align pytest version across dependency managers.
pyproject.toml sets pytest = "9.0.3", while requirements-ci.txt and requirements-dev.txt still pin pytest==8.3.5, creating version drift between Poetry and pip installs that can affect test behavior. Align all three to the same pytest version (either bump both requirements files to 9.0.3 or downgrade pyproject.toml to 8.3.5).
Suggested fix (if choosing `pytest 9.0.3` everywhere)
--- a/requirements-ci.txt
+++ b/requirements-ci.txt
@@
-pytest==8.3.5
+pytest==9.0.3--- a/requirements-dev.txt
+++ b/requirements-dev.txt
@@
-pytest==8.3.5
+pytest==9.0.3🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@pyproject.toml` at line 26, pyproject.toml currently pins pytest as "pytest =
\"9.0.3\"" while requirements-ci.txt and requirements-dev.txt pin
"pytest==8.3.5"; update the two requirements files to match the pyproject
version (or change pyproject to 8.3.5) so all three files use the exact same
pytest version; edit requirements-ci.txt and requirements-dev.txt to replace
"pytest==8.3.5" with "pytest==9.0.3" (or change pyproject.toml's pytest string
to "8.3.5" if you prefer downgrading) and run a quick install/test to confirm no
dependency conflicts.



Bumps the testing group with 5 updates in the / directory:
8.3.59.0.31.3.01.4.06.0.07.1.040.11.040.19.16.151.106.155.1Updates
pytestfrom 8.3.5 to 9.0.3Release notes
Sourced from pytest's releases.
... (truncated)
Commits
a7d58d7Prepare release version 9.0.3089d981Merge pull request #14366 from bluetech/revert-14193-backport8127eafRevert "Fix: assertrepr_compare respects dict insertion order (#14050) (#14193)"99a7e60Merge pull request #14363 from pytest-dev/patchback/backports/9.0.x/95d8423bd...ddee02aMerge pull request #14343 from bluetech/cve-2025-71176-simple74eac69doc: Update training info (#14298) (#14301)f92dee7Merge pull request #14267 from pytest-dev/patchback/backports/9.0.x/d6fa26c62...7ee58acMerge pull request #12378 from Pierre-Sassoulas/fix-implicit-str-concat-and-d...37da870Merge pull request #14259 from mitre88/patch-4 (#14268)c34bfa3Add explanation for string context diffs (#14257) (#14266)Updates
pytest-asynciofrom 1.3.0 to 1.4.0Release notes
Sourced from pytest-asyncio's releases.
... (truncated)
Commits
6e14cd2chore: Prepare release of v1.4.0.4b900fbBuild(deps): Bump codecov/codecov-action from 6.0.0 to 6.0.1ab9f632Build(deps): Bump zipp from 3.23.1 to 4.1.0a56fc77Build(deps): Bump hypothesis from 6.152.6 to 6.152.8e8bae9bBuild(deps): Bump requests from 2.34.0 to 2.34.2fc43340Build(deps): Bump idna from 3.14 to 3.15762eaf5Build(deps): Bump jaraco-functools from 4.4.0 to 4.5.0b62e222Build(deps): Bump click from 8.3.3 to 8.4.09190447Build(deps): Bump pydantic from 2.13.3 to 2.13.482a393cci: Remove unnecessary debug output.Updates
pytest-covfrom 6.0.0 to 7.1.0Changelog
Sourced from pytest-cov's changelog.
... (truncated)
Commits
66c8a52Bump version: 7.0.0 → 7.1.0f707662Make the examples use pypy 3.11.6049a78Make context test use the old ctracer (seems the new sysmon tracer behaves di...8ebf20bUpdate changelog.861d30eRemove the backup context manager - shouldn't be needed since coverage 5.0, ...fd4c956Pass the precision on the nulled total (seems that there's some caching goion...78c9c4eOnly run the 3.9 on older deps.4849a92Punctuation.197c35eUpdate changelog and hopefully I don't forget to publish release again :))14dc1c9Update examples to use 3.11 and make the adhoc layout example look a bit more...Updates
fakerfrom 40.11.0 to 40.19.1Release notes
Sourced from faker's releases.
Changelog
Sourced from faker's changelog.
Commits
3e9b7b0Bump version: 40.19.0 → 40.19.1fea0515📝 Update CHANGELOG.mda2af511fix(en_IN): avoid shared state mutation inpincode_in_state(#2369)fbb59f3Bump version: 40.18.0 → 40.19.0bd0f6da📝 Update CHANGELOG.md822a14d💄 lint codea1a1b2afeat: Adduuid1anduuid7providers tomiscprovider (#2344)44c45e0Bump version: 40.17.0 → 40.18.087d8b40📝 Update CHANGELOG.md8a7fa46💄 Lint codeUpdates
hypothesisfrom 6.151.10 to 6.155.1Release notes
Sourced from hypothesis's releases.
... (truncated)
Commits
4afeadaBump hypothesis version to 6.155.1 and update changelog1dafffbMerge pull request #4755 from Zac-HD/claude/nice-bardeen-xS6yA78b2a01Address review feedback on the overrun-repair branchba3a206Merge pull request #4757 from Zac-HD/cleanups4f72f64deflake tests?4411487crosshair tests cleanupb19b02eBump hypothesis version to 6.155.0 and update changelog05a605bMerge pull request #4756 from Zac-HD/claude/hopeful-einstein-zhwDO5690ba9Bump hypothesis version to 6.154.2 and update changelog7e91ba0Merge pull request #4751 from Zac-HD/claude/amazing-brahmagupta-6XQsPDependabot 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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 conditionsSummary by CodeRabbit