aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix')
-rw-r--r--nix/test_all.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/test_all.py b/nix/test_all.py
index ab9dcdc..118c287 100644
--- a/nix/test_all.py
+++ b/nix/test_all.py
@@ -64,7 +64,7 @@ def wrong_options(library):
return default_options(library)
def build_library(library, version):
- command = ["nix", "build", "--quiet", f"?submodules=1#{library}.{version}"]
+ command = ["nix", "build", "--log-format", "raw", f"?submodules=1#{library}.{version}"]
result = sp.run(command, check=False)
print(f"build {library} {version} = {result.returncode}")
return result.returncode == 0