python312Packages.isort: disable failing test

This commit is contained in:
Martin Weinelt 2024-03-24 12:15:20 +01:00
parent d57e54b504
commit fad18b0c0e
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
1 changed files with 2 additions and 2 deletions

View File

@ -52,8 +52,6 @@ buildPythonPackage rec {
"--ignore=tests/benchmark/" # requires pytest-benchmark
"--ignore=tests/integration/" # pulls in 10 other packages
"--ignore=tests/unit/profiles/test_black.py" # causes infinite recursion to include black
# pytest.PytestRemovedIn8Warning: Passing None has been deprecated.
"-W" "ignore::pytest.PytestRemovedIn8Warning"
];
disabledTests = [
@ -74,6 +72,8 @@ buildPythonPackage rec {
"test_value_assignment_list"
# profiles not available
"test_isort_supports_shared_profiles_issue_970"
# https://github.com/PyCQA/isort/issues/2234
"test_isort_should_warn_on_empty_custom_config_issue_1433"
];
meta = with lib; {