python3Packages.flake8-polyfill: disable failing tests

This commit is contained in:
Fabian Affolter 2021-11-26 23:26:00 +01:00
parent 82e26e0974
commit 8959f7b211
2 changed files with 26 additions and 12 deletions

View file

@ -1,6 +1,12 @@
{ lib, fetchPypi, buildPythonPackage
{ lib
, buildPythonPackage
, fetchpatch
, fetchPypi
, flake8
, mock, pep8, pytest }:
, mock
, pep8
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "flake8-polyfill";
@ -11,12 +17,6 @@ buildPythonPackage rec {
sha256 = "1nlf1mkqw856vi6782qcglqhaacb23khk9wkcgn55npnjxshhjz4";
};
postPatch = ''
# Failed: [pytest] section in setup.cfg files is no longer supported, change to [tool:pytest] instead.
substituteInPlace setup.cfg \
--replace pytest 'tool:pytest'
'';
propagatedBuildInputs = [
flake8
];
@ -24,13 +24,28 @@ buildPythonPackage rec {
checkInputs = [
mock
pep8
pytest
pytestCheckHook
];
checkPhase = ''
pytest tests
patches = [
# Skip unnecessary tests on Flake8, https://github.com/PyCQA/pep8-naming/pull/181
(fetchpatch {
name = "skip-tests.patch";
url = "https://github.com/PyCQA/flake8-polyfill/commit/3cf414350e82ceb835ca2edbd5d5967d33e9ff35.patch";
sha256 = "mElZafodq8dF3wLO/LOqwFb7eLMsPLlEjNSu5AWqets=";
})
];
postPatch = ''
# Failed: [pytest] section in setup.cfg files is no longer supported, change to [tool:pytest] instead.
substituteInPlace setup.cfg \
--replace pytest 'tool:pytest'
'';
pythonImportsCheck = [
"flake8_polyfill"
];
meta = with lib; {
homepage = "https://gitlab.com/pycqa/flake8-polyfill";
description = "Polyfill package for Flake8 plugins";

View file

@ -30,7 +30,6 @@ buildPythonPackage rec {
})
];
checkPhase = ''
runHook preCheck
${python.interpreter} run_tests.py