lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.essentials: disable broken tests on darwin

Zexin Yuan f29ec1b3 032bc653

+7
+7
pkgs/development/python-modules/essentials/default.nix
··· 3 3 fetchFromGitHub, 4 4 setuptools, 5 5 pytestCheckHook, 6 + stdenv, 6 7 lib, 7 8 }: 8 9 buildPythonPackage rec { ··· 20 21 nativeBuildInputs = [ setuptools ]; 21 22 22 23 nativeCheckInputs = [ pytestCheckHook ]; 24 + 25 + disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ 26 + # time.sleep(0.01) can be up to 0.05s on darwin 27 + "test_stopwatch" 28 + "test_stopwatch_with_context_manager" 29 + ]; 23 30 24 31 pythonImportsCheck = [ "essentials" ]; 25 32