Unverified Commit 6d81757d authored by Philip Taron's avatar Philip Taron Committed by GitHub
Browse files

python3Packages.llm, python3Packages.symbex: disable tests that fail due to click 8.2.0 (#454329)

parents 7d08a852 3c25c6c0
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -228,6 +228,17 @@ let
      "tests/"
    ];

    disabledTests = [
      # AssertionError: The following responses are mocked but not requested:
      # - Match POST request on https://api.openai.com/v1/chat/completions
      # https://github.com/simonw/llm/issues/1292
      "test_gpt4o_mini_sync_and_async"

      # TypeError: CliRunner.__init__() got an unexpected keyword argument 'mix_stderr
      # https://github.com/simonw/llm/issues/1293
      "test_embed_multi_files_encoding"
    ];

    pythonImportsCheck = [ "llm" ];

    passthru = {
+9 −0
Original line number Diff line number Diff line
@@ -35,6 +35,15 @@ buildPythonPackage rec {
    writableTmpDirAsHomeHook
  ];

  disabledTests = [
    # Broken due to click 8.2.0 update
    # https://github.com/simonw/symbex/issues/48
    "test_output"
    "test_replace"
    "test_replace_errors"
    "test_errors"
  ];

  meta = {
    description = "Find the Python code for specified symbols";
    homepage = "https://github.com/simonw/symbex";