python3Packages.watchdog: disable flaky tests

main
Fabian Affolter 3 years ago committed by Jonathan Ringer
parent 0f27fc3d94
commit a506eb42d1
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
  1. 10
      pkgs/development/python-modules/watchdog/default.nix

@ -13,6 +13,7 @@
buildPythonPackage rec {
pname = "watchdog";
version = "2.1.6";
format = "setuptools";
src = fetchPypi {
inherit pname version;
@ -38,7 +39,14 @@ buildPythonPackage rec {
--replace "--cov-report=term-missing" ""
'';
pythonImportsCheck = [ "watchdog" ];
disabledTestPaths = [
# Tests are flaky
"tests/test_inotify_buffer.py"
];
pythonImportsCheck = [
"watchdog"
];
meta = with lib; {
description = "Python API and shell utilities to monitor file system events";

Loading…
Cancel
Save