python314Packages.ploomber-core: disable tests that depend on pre-3.14 attributes

This commit is contained in:
Sarah Clark
2026-02-23 17:59:00 -08:00
parent 3a90caecf1
commit 386033debc
@@ -6,6 +6,7 @@
pyyaml,
posthog,
pytestCheckHook,
pythonAtLeast,
typing-extensions,
}:
@@ -36,6 +37,11 @@ buildPythonPackage rec {
"exceptions" # requires stderr capture
];
disabledTestPaths = lib.optionals (pythonAtLeast "3.14") [
# Depends on pre-3.14 attribute access
"tests/test_config.py"
];
pythonImportsCheck = [ "ploomber_core" ];
meta = {