pythonPackages.pytest-mypy: Disable tests

This commit is contained in:
Sandro Jäckel 2020-12-23 20:53:58 +01:00
parent 55f2b8026f
commit bfec86dac4
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -17,8 +17,13 @@ buildPythonPackage rec {
};
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ pytest mypy filelock ];
# does not contain tests
doCheck = false;
pythonImportsCheck = [ "pytest_mypy" ];
meta = with lib; {
description = "Mypy static type checker plugin for Pytest";
homepage = "https://github.com/dbader/pytest-mypy";