sourceHighlight: enable tests, disable parallelism in tests only

This commit is contained in:
Sergei Trofimovich 2021-09-11 09:33:33 +01:00
parent 646e7aa079
commit 1123630e12

@ -30,7 +30,12 @@ stdenv.mkDerivation rec {
configureFlags = [ "--with-boost=${boost.out}" ];
enableParallelBuilding = false;
doCheck = true;
enableParallelBuilding = true;
# Upstream uses the same intermediate files in multiple tests, running
# them in parallel by make will eventually break one or more tests.
enableParallelChecking = false;
outputs = [ "out" "doc" "dev" ];