mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
python3Packages.flufl_lock: fix darwin build
The code coverage requirement of 100% was too stringent on Darwin. Since there is no way that we can address a lack of code coverage downstream we remove this check.
This commit is contained in:
parent
55301e2cb3
commit
1473a2bf1a
@ -14,6 +14,11 @@ buildPythonPackage rec {
|
||||
propagatedBuildInputs = [ atpublic psutil ];
|
||||
checkInputs = [ pytestCheckHook pytestcov sybil ];
|
||||
|
||||
# disable code coverage checks for all OS. Upstream does not enforce these
|
||||
# checks on Darwin, and code coverage cannot be improved downstream nor is it
|
||||
# relevant to the user.
|
||||
pytestFlagsArray = [ "--no-cov" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://flufllock.readthedocs.io/";
|
||||
description = "NFS-safe file locking with timeouts for POSIX and Windows";
|
||||
|
Loading…
Reference in New Issue
Block a user