Unverified Commit 211a16eb authored by Ben Siraphob's avatar Ben Siraphob Committed by GitHub
Browse files

python3Packages.pysnooper: disable timing-sensitive test on all Darwin (#508810)

parents 55ec5392 a822ec5a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -23,8 +23,8 @@ buildPythonPackage rec {

  nativeCheckInputs = [ pytestCheckHook ];

  disabledTests = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
    # timing-sensitive and often breaks on x86_64-darwin
  disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
    # timing-sensitive and often breaks on Darwin
    "test_relative_time"
  ];