python311Packages.pytest-mock: disable failing test

This commit is contained in:
natsukium 2023-12-09 17:25:28 +09:00 committed by Martin Weinelt
parent 95df26eb87
commit 64eacbc2df
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, pythonAtLeast
, pythonOlder
, fetchPypi
, pytest
@ -35,6 +36,12 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = lib.optionals (pythonAtLeast "3.11") [
# Regression in 3.11.7 and 3.12.1; https://github.com/pytest-dev/pytest-mock/issues/401
"test_failure_message_with_name"
"test_failure_message_with_no_name"
];
pythonImportsCheck = [ "pytest_mock" ];
meta = with lib; {