diff --git a/pkgs/development/python-modules/throttler/default.nix b/pkgs/development/python-modules/throttler/default.nix index 42e006f77b45f..1e8983a021039 100644 --- a/pkgs/development/python-modules/throttler/default.nix +++ b/pkgs/development/python-modules/throttler/default.nix @@ -33,6 +33,11 @@ buildPythonPackage rec { pytestFlagsArray = [ "tests/" ]; + disabledTestPaths = [ + # time sensitive tests + "tests/test_execution_timer.py" + ]; + meta = with lib; { description = "Zero-dependency Python package for easy throttling with asyncio support"; homepage = "https://github.com/uburuntu/throttler";