python313Packages.vbuild: disable failing tests on Python 3.13

This commit is contained in:
Fabian Affolter
2025-01-08 17:31:45 +01:00
parent b77f864521
commit da0c36db08
@@ -5,6 +5,7 @@
poetry-core,
pscript,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
}:
@@ -38,10 +39,21 @@ buildPythonPackage rec {
pythonImportsCheck = [ "vbuild" ];
disabledTests = [
# Tests require network access
"test_min"
"test_pycomp_onlineClosurable"
disabledTests =
[
# Tests require network access
"test_min"
"test_pycomp_onlineClosurable"
]
++ lib.optionals (pythonAtLeast "3.13") [
"test_ok"
];
disabledTestPaths = lib.optionals (pythonAtLeast "3.13") [
# https://github.com/manatlan/vbuild/issues/13
"tests/test_py2js.py"
"tests/test_PyStdLibIncludeOrNot.py"
"test_py_comp.py"
];
meta = {