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

This commit is contained in:
Ben Darwin 2023-10-24 12:30:58 -04:00
parent e929646376
commit 1e3d77cb20

View file

@ -46,8 +46,13 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "bids" ];
# looks for missing data:
disabledTests = [ "test_config_filename" ];
disabledTests = [
# looks for missing data:
"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";