Commit 64ec5576 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python3Packages.tinygrad: skip failing test on x86_64-darwin

parent 59015aa1
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -253,6 +253,15 @@ buildPythonPackage (finalAttrs: {
    # AttributeError: module 'tinygrad.runtime.autogen.libclang' has no attribute 'clang_parseTranslationUnit'
    "test_gen_from_header"
    "test_struct_ordering"
  ]
  ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
    # AssertionError: Expected 1 operations, got 3
    # assert 3 == 1
    #  +  where 3 = len([ExecItem(ast=UOp(Ops.SINK, dtypes.void, arg=None, src=...
    #  +  and   1 = len([{'cnt': 3, 'type': 'graph'}])
    #
    # test/test_jit.py:695: AssertionError
    "TestJitGraphSplit"
  ];

  disabledTestPaths = [