Merge pull request #291006 from mweinelt/pytest-benchmark-test-fixes

python311Packages.pytest-benchmark: fix tests
This commit is contained in:
Martin Weinelt 2024-02-24 01:22:29 +01:00 committed by GitHub
commit dfd39c05a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,16 +14,16 @@
, pytestCheckHook
, pytest-xdist
, pythonOlder
, isPy311
, setuptools
}:
buildPythonPackage rec {
pname = "pytest-benchmark";
version = "4.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
format = "setuptools";
src = fetchFromGitHub {
owner = "ionelmc";
@ -33,10 +33,24 @@ buildPythonPackage rec {
};
patches = [
# replace distutils.spawn.find_executable with shutil.which
(fetchpatch {
url = "https://github.com/ionelmc/pytest-benchmark/commit/728752d2976ef53fde7e40beb3e55f09cf4d4736.patch";
hash = "sha256-WIQADCLey5Y79UJUj9J5E02HQ0O86xBh/3IeGLpVrWI=";
})
# fix tests with python3.11+; https://github.com/ionelmc/pytest-benchmark/pull/232
(fetchpatch {
url = "https://github.com/ionelmc/pytest-benchmark/commit/b2f624afd68a3090f20187a46284904dd4baa4f6.patch";
hash = "sha256-cylxPj/d0YzvOGw+ncVSCnQHwq2cukrgXhBHePPwjO0=";
})
(fetchpatch {
url = "https://github.com/ionelmc/pytest-benchmark/commit/2b987f5be1873617f02f24cb6d76196f9aed21bd.patch";
hash = "sha256-92kWEd935Co6uc/1y5OGKsc5/or81bORSdaiQFjDyTw=";
})
];
nativeBuildInputs = [
setuptools
];
buildInputs = [
@ -64,24 +78,23 @@ buildPythonPackage rec {
mercurial
pytestCheckHook
pytest-xdist
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);
pytestFlagsArray = [
"-W" "ignore::DeprecationWarning"
];
preCheck = ''
export PATH="$out/bin:$PATH"
'';
disabledTests = [
disabledTests = lib.optionals (pythonOlder "3.12") [
# AttributeError: 'PluginImportFixer' object has no attribute 'find_spec'
"test_compare_1"
"test_compare_2"
"test_regression_checks"
"test_regression_checks_inf"
"test_rendering"
]
# tests are broken in 3.11
# https://github.com/ionelmc/pytest-benchmark/issues/231
++ lib.optionals isPy311 [
"test_abort_broken"
"test_clonefunc"
];
meta = with lib; {