pythonPackages.lektor: use pytestCheckHook

This commit is contained in:
Sandro Jäckel 2021-02-16 23:17:59 +01:00
parent d2ca51344e
commit d165503b58
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -12,8 +12,8 @@
, flask
, pyopenssl
, ndg-httpsclient
, pytest
, pytestcov
, pytestCheckHook
, pytest-cov
, pytest-mock
, pytest-pylint
, pytest-click
@ -39,13 +39,9 @@ buildPythonPackage rec {
] ++ lib.optionals isPy27 [ functools32 ];
checkInputs = [
pytest pytestcov pytest-mock pytest-pylint pytest-click
pytestCheckHook pytest-cov pytest-mock pytest-pylint pytest-click
];
checkPhase = ''
pytest
'';
# many errors -- tests assume inside of git repo, linting errors 13/317 fail
doCheck = false;