Bump the test group with 2 updates
Created by: dependabot[bot]
Bumps the test group with 2 updates: pytest and tox.
Updates pytest
from 8.1.1 to 8.2.0
Release notes
Sourced from pytest's releases.
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
#11523:
pytest.importorskip
{.interpreted-text role="func"} will now issue a warning if the module could be found, but raisedImportError
{.interpreted-text role="class"} instead ofModuleNotFoundError
{.interpreted-text role="class"}.The warning can be suppressed by passing
exc_type=ImportError
topytest.importorskip
{.interpreted-text role="func"}.See
import-or-skip-import-error
{.interpreted-text role="ref"} for details.#11728: For
unittest
-based tests, exceptions during class cleanup (as raised by functions registered withTestCase.addClassCleanup <unittest.TestCase.addClassCleanup>
{.interpreted-text role="meth"}) are now reported instead of silently failing.#11777: Text is no longer truncated in the
short test summary info
section when-vv
is given.#12112: Improved namespace packages detection when
consider_namespace_packages
{.interpreted-text role="confval"} is enabled, covering more situations (like editable installs).#9502: Added
PYTEST_VERSION
{.interpreted-text role="envvar"} environment variable which is defined at the start of the pytest session and undefined afterwards. It contains the value ofpytest.__version__
, and among other things can be used to easily check if code is running from within a pytest run.Bug Fixes
#12065: Fixed a regression in pytest 8.0.0 where test classes containing
setup_method
and tests using@staticmethod
or@classmethod
would crash withAttributeError: 'NoneType' object has no attribute 'setup_method'
.Now the
request.instance <pytest.FixtureRequest.instance>
{.interpreted-text role="attr"} attribute of tests using@staticmethod
and@classmethod
is no longerNone
, but a fresh instance of the class, like in non-static methods.
... (truncated)
Commits
-
6bd3f31
Tweak changelog for 8.2.0 -
9b6219b
Prepare release version 8.2.0 -
835765c
Merge pull request #12130 from bluetech/fixtures-inline -
7e7503c
unittest: report class cleanup exceptions (#12250) -
882c4da
fixtures: inlinefail_fixturefunc
-
2e8fb9f
fixtures: extract a_check_fixturedef
method -
acf2971
fixtures: inline_getnextfixturedef
into_get_active_fixturedef
-
3c77aec
fixtures: move "request" check early -
d217d68
fixtures: inline_compute_fixture_value
-
530be28
fixtures: use early return in_get_active_fixturedef
- 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