refurb: disable test relying on mypy

This commit is contained in:
Sandro Jäckel 2023-06-15 16:32:28 +02:00
parent b9fbc6adb3
commit f956eaac6b
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -15,6 +15,11 @@ python3Packages.buildPythonApplication rec {
hash = "sha256-e/gKBgbtjO2XYnAIdHDoVJWyP6cyvsuIFLrV/eqjces=";
};
postPatch = ''
# remove --cov* options provided to pytest
sed -i '/^addopts = "--cov/d' pyproject.toml
'';
nativeBuildInputs = with python3Packages; [
poetry-core
];
@ -41,9 +46,9 @@ python3Packages.buildPythonApplication rec {
pytestCheckHook
];
postPatch = ''
sed -i "/^addopts/d" pyproject.toml
'';
disabledTests = [
"test_checks" # broken because new mypy release added new checks
];
pythonImportsCheck = [
"refurb"