Unverified Commit 6266094e authored by Tristan Ross's avatar Tristan Ross
Browse files

pythonPackages.mako: disable broken tests in llvm

parent 2d53b6bb
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -61,6 +61,14 @@ buildPythonPackage rec {
    ++ lib.optionals (stdenv.isAarch64 && pythonOlder "3.9") [
      # AssertionError: assert 'foo' in ['setup']
      "test_init_extension_module"
    ]
    ++ lib.optionals (stdenv.targetPlatform.useLLVM or false) [
      # InvalidPythonEnvironment: The python binary is potentially unsafe.
      "test_create_environment_executable"
      # AssertionError: assert ['', '.1000000000000001'] == ['', '.1']
      "test_dict_keys_completions"
      # AssertionError: assert ['', '.1000000000000001'] == ['', '.1']
      "test_dict_completion"
    ];

  meta = with lib; {