Bump the test group across 1 directory with 2 updates
Created by: dependabot[bot]
Bumps the test group with 2 updates in the / directory: pytest and tox.
Updates pytest
from 8.1.1 to 8.2.1
Release notes
Sourced from pytest's releases.
8.2.1
pytest 8.2.1 (2024-05-19)
Improvements
- #12334: Support for Python 3.13 (beta1 at the time of writing).
Bug Fixes
- #12120: Fix [PermissionError]{.title-ref} crashes arising from directories which are not selected on the command-line.
- #12191: Keyboard interrupts and system exits are now properly handled during the test collection.
- #12300: Fixed handling of 'Function not implemented' error under squashfuse_ll, which is a different way to say that the mountpoint is read-only.
- #12308: Fix a regression in pytest 8.2.0 where the permissions of automatically-created
.pytest_cache
directories becamerwx------
instead of the expectedrwxr-xr-x
.Trivial/Internal Changes
- #12333: pytest releases are now attested using the recent Artifact Attestation support from GitHub, allowing users to verify the provenance of pytest's sdist and wheel artifacts.
8.2.0
pytest 8.2.0 (2024-04-27)
Deprecations
#12069: A deprecation warning is now raised when implementations of one of the following hooks request a deprecated
py.path.local
parameter instead of thepathlib.Path
parameter which replaced it:
pytest_ignore_collect
{.interpreted-text role="hook"} - thepath
parameter - usecollection_path
instead.pytest_collect_file
{.interpreted-text role="hook"} - thepath
parameter - usefile_path
instead.pytest_pycollect_makemodule
{.interpreted-text role="hook"} - thepath
parameter - usemodule_path
instead.pytest_report_header
{.interpreted-text role="hook"} - thestartdir
parameter - usestart_path
instead.pytest_report_collectionfinish
{.interpreted-text role="hook"} - thestartdir
parameter - usestart_path
instead.The replacement parameters are available since pytest 7.0.0. The old parameters will be removed in pytest 9.0.0.
See
legacy-path-hooks-deprecated
{.interpreted-text role="ref"} for more details.Features
#11871: Added support for reading command line arguments from a file using the prefix character
@
, like e.g.:pytest `@tests.txt`
. The file must have one argument per line.See
Read arguments from file <args-from-file>
{.interpreted-text role="ref"} for details.Improvements
... (truncated)
Commits
-
66ff8df
Prepare release version 8.2.1 -
3ffcfd1
Merge pull request #12340 from pytest-dev/backport-12334-to-8.2.x -
0b28313
[8.2.x] Add Python 3.13 (beta) support -
f3dd93a
[8.2.x] Attest package provenance (#12335) -
bb5a125
[8.2.x] Spelling (#12331) -
f179bf2
Merge pull request #12327 from pytest-dev/backport-12325-to-8.2.x -
2b671b5
[8.2.x] cacheprovider: fix.pytest_cache
not being world-readable -
65ab7cb
Merge pull request #12324 from pytest-dev/backport-12320-to-8.2.x -
4d5fb7d
Merge pull request #12319 from pytest-dev/backport-12311-to-8.2.x -
cbe5996
[8.2.x] changelog: document unittest 8.2 change as breaking - Additional commits viewable in compare view
Updates tox
from 4.14.2 to 4.15.0
Release notes
Sourced from tox's releases.
4.15.0
What's Changed
- Remove duplicated and misleading configuration section by
@jugmac00
in tox-dev/tox#3251- Fix dropped leading characters
c
from constraints' packages by@jugmac00
in tox-dev/tox#3250- Fix type-checking by
@stefanor
in tox-dev/tox#3260- Update installation.rst by
@shenxianpeng
in tox-dev/tox#3257- Allow appending to deps with the command line by
@stefanor
in tox-dev/tox#3259- Support multiple override appends by
@amitschang
in tox-dev/tox#3261- Add bang to invert exit code by
@sillydan1
in tox-dev/tox#3271- fix(parser): Fix --discover parsed incorrectly from env by
@mimre25
in tox-dev/tox#3274New Contributors
@shenxianpeng
made their first contribution in tox-dev/tox#3257@amitschang
made their first contribution in tox-dev/tox#3261@sillydan1
made their first contribution in tox-dev/tox#3271@mimre25
made their first contribution in tox-dev/tox#3274Full Changelog: https://github.com/tox-dev/tox/compare/4.14.2...4.15.0
Changelog
Sourced from tox's changelog.
v4.15.0 (2024-04-26)
Features - 4.15.0
- Add support for multiple appending override options (-x, --override) on command line - by :user:`amitschang`. (:issue:`3261`) - Add support for inverting exit code success criteria using bang (!) (:issue:`3271`) Bugfixes - 4.15.0
- Fix issue that the leading character
c
was dropped from packages in constraints files - by :user:jugmac00
. (:issue:3247
)- Allow appending to
deps
with--override testenv.deps+=foo
- by :user:stefanor
. (:issue:3256
)- Fix non-existing branch
rewrite
in the documentation tomain
. (:issue:3257
)- Update test typing for build 1.2.0, which has an explicit
Distribution
type - by :user:stefanor
. (:issue:3260
)- Fix broken input parsing for
--discover
flag. - by :user:mimre25
(:issue:3272
)Improved Documentation - 4.15.0
- Rephrase ``--discover`` flag's description to avoid confusion between paths and executables. - by :user:`mimre25` (:issue:`3274`)
Commits
-
261b4ca
release 4.15.0 -
c54dfbd
fix(parser): Fix --discover parsed incorrectly from env (#3274) -
809e10f
Add bang to invert exit code (#3271) -
822c9d0
[pre-commit.ci] pre-commit autoupdate (#3267) -
0e5a3db
[pre-commit.ci] pre-commit autoupdate (#3265) -
f5850c0
Support multiple override appends (#3261) -
c2be629
Allow appending to deps with the command line (#3259) -
d28a9ee
Update installation.rst (#3257) -
a19a946
[pre-commit.ci] pre-commit autoupdate (#3258) -
a22fe8f
Fix type-checking (#3260) - 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