pythonPackages.ufoprocessor: fix test execution

gstqt5
sternenseemann 2021-01-16 17:51:46 +01:00
parent a6d138c7ad
commit ac5271a02f
1 changed files with 8 additions and 3 deletions

View File

@ -26,9 +26,14 @@ buildPythonPackage rec {
mutatormath
];
# tests require custom commands to run
doCheck = false;
pythonImportsCheck = [ "ufoProcessor" ];
checkPhase = ''
runHook preCheck
for t in Tests/*.py; do
# https://github.com/LettError/ufoProcessor/issues/32
[[ "$(basename "$t")" = "tests_fp.py" ]] || python "$t"
done
runHook postCheck
'';
meta = with lib; {
description = "Read, write and generate UFOs with designspace data";