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.2
Release notes
Sourced from pytest's releases.
8.2.2
pytest 8.2.2 (2024-06-04)
Bug Fixes
- #12355: Fix possible catastrophic performance slowdown on a certain parametrization pattern involving many higher-scoped parameters.
- #12367: Fix a regression in pytest 8.2.0 where unittest class instances (a fresh one is created for each test) were not released promptly on test teardown but only on session teardown.
- #12381: Fix possible "Directory not empty" crashes arising from concurent cache dir (
.pytest_cache
) creation. Regressed in pytest 8.2.0.Improved Documentation
- #12290: Updated Sphinx theme to use Furo instead of Flask, enabling Dark mode theme.
- #12356: Added a subsection to the documentation for debugging flaky tests to mention lack of thread safety in pytest as a possible source of flakyness.
- #12363: The documentation webpages now links to a canonical version to reduce outdated documentation in search engine results.
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:
... (truncated)
Commits
-
329d371
Prepare release version 8.2.2 -
214d098
Merge pull request #12414 from bluetech/backport-12409 -
153a436
[8.2.x] fixtures: fix catastrophic performance problem inreorder_items
-
b41d5a5
Merge pull request #12412 from pytest-dev/backport-12408-to-8.2.x -
9bb73d7
[8.2.x] cacheprovider: fix "Directory not empty" crash from cache directory c... -
4569a01
[8.2.x] doc: Update trainings/events (#12402) -
1d103e5
[8.2.x] Clarify pytest_ignore_collect docs (#12386) -
240a252
[8.2.x] Add html_baseurl to sphinx conf.py (#12372) -
a5ee3c4
Merge pull request #12370 from pytest-dev/backport-12368-to-8.2.x -
f7358ae
[8.2.x] unittest: fix class instances no longer released on test teardown sin... - Additional commits viewable in compare view
Updates tox
from 4.14.2 to 4.15.1
Release notes
Sourced from tox's releases.
4.15.1
What's Changed
- fix skip with package = wheel by
@MarcinKonowalczyk
in tox-dev/tox#3269- Fixed typo in user guide. by
@carltongibson
in tox-dev/tox#3277- Fix broad build privileges @ GHA release workflow by
@webknjaz
in tox-dev/tox#3281- Allow
ConfigSet.add_config
to receive parameterized generics forof_type
. by@ssbarnea
in tox-dev/tox#3288- Fix section substitution with setenv by
@JJLLWW
in tox-dev/tox#3289New Contributors
@MarcinKonowalczyk
made their first contribution in tox-dev/tox#3269@carltongibson
made their first contribution in tox-dev/tox#3277@JJLLWW
made their first contribution in tox-dev/tox#3289Full Changelog: https://github.com/tox-dev/tox/compare/4.15.0...4.15.1
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.1 (2024-06-05)
Features - 4.15.1
- Fix ``skip_missing_interpreters`` option for ``package = wheel`` (:issue:`3269`) Bugfixes - 4.15.1
- Fix section substitution with setenv. (:issue:
3262
)- Allow
ConfigSet.add_config
to receive parameterized generics forof_type
. (:issue:3288
)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
-
079000f
release 4.15.1 -
489ad82
Fix section substitution with setenv (#3289) -
7317225
AllowConfigSet.add_config
to receive parameterized generics forof_type
.... -
406f808
[pre-commit.ci] pre-commit autoupdate (#3283) -
5c28d9c
[pre-commit.ci] pre-commit autoupdate (#3279) -
f4e257c
Fix broad build privileges @ GHA release workflow (#3281) -
77564a1
Fixed typo in user guide. -
e2f66b1
[pre-commit.ci] auto fixes from pre-commit.com hooks -
9afc9cb
[pre-commit.ci] pre-commit autoupdate -
3db9822
fix skip with package = wheel (#3269) - 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