1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 22:20:51 +00:00

python-dogpile-cache: disable concurrency tests

This commit is contained in:
Daiderd Jordan 2017-05-11 19:47:53 +02:00
parent de9c869df2
commit c58aa3a508
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -12,6 +12,12 @@ buildPythonPackage rec {
sha256 = "73793471af07af6dc5b3ee015abfaca4220caaa34c615537f5ab007ed150726d";
};
# Disable concurrency tests that often fail,
# probably some kind of timing issue.
prePatch = ''
rm tests/test_lock.py
'';
propagatedBuildInputs = [ dogpile_core ];
buildInputs = [ pytest pytestcov mock Mako ];