python313Packages.colcon: fixed spellchecking test

GueLaKais b2315084 4f855d3f

Changed files
+8 -2
pkgs
development
python-modules
colcon
+8 -2
pkgs/development/python-modules/colcon/default.nix
···
pytest-cov-stub,
pytest-repeat,
pytest-rerunfailures,
+
scspell,
+
writableTmpDirAsHomeHook,
}:
+
buildPythonPackage rec {
pname = "colcon-core";
version = "0.19.0";
···
pytest-cov-stub
pytest-repeat
pytest-rerunfailures
+
scspell
+
writableTmpDirAsHomeHook
];
disabledTestPaths = [
-
# Skip the linter and spell check tests that require additional dependencies
+
# Skip the linter tests that require additional dependencies
"test/test_flake8.py"
-
"test/test_spell_check.py"
+
# Skip failing Python build tests
+
"test/test_build_python.py"
];
pythonImportsCheck = [ "colcon_core" ];