Commit 1e3d77cb authored by Ben Darwin's avatar Ben Darwin
Browse files

python311Packages.pybids: disable a single failing test due to known regression

parent e9296463
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -46,8 +46,13 @@ buildPythonPackage rec {

  nativeCheckInputs = [ pytestCheckHook ];
  pythonImportsCheck = [ "bids" ];
  disabledTests = [
    # looks for missing data:
  disabledTests = [ "test_config_filename" ];
    "test_config_filename"
    # regression associated with formulaic >= 0.6.0
    # (see https://github.com/bids-standard/pybids/issues/1000)
    "test_split"
  ];

  meta = with lib; {
    description = "Python tools for querying and manipulating BIDS datasets";