mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Merge pull request #291006 from mweinelt/pytest-benchmark-test-fixes
python311Packages.pytest-benchmark: fix tests
This commit is contained in:
commit
dfd39c05a8
@ -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; {
|
||||
|
Loading…
Reference in New Issue
Block a user