nix-eval-jobs: run tests with -v

That way we get a line of output per test completed,
which makes it more obvious it's actually doing things.

Change-Id: Ifbbe8bdf64e7178d3c59349cf071eb5a9d0fcd32
This commit is contained in:
K900
2025-07-06 21:31:48 +03:00
parent 378b360bf8
commit 4bc0bdc20b
+1 -1
View File
@@ -70,7 +70,7 @@ let
buildPhase = ''
export NIX_REMOTE="$NIX_BUILD_TOP"
export HOME="$(mktemp -d)"
pytest
pytest -v
'';
installPhase = "touch $out";
})