aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorJ08nY2024-08-18 22:37:28 +0200
committerJ08nY2024-08-18 22:37:28 +0200
commit343215f43857fd9761910d2679503a940eb42177 (patch)
treeb767efbb4b9ff4a155ee36fdbbce373ac73f01e1 /nix
parent10115e0359120039fa9282e79a8cf1fab48ef5b9 (diff)
downloadECTester-343215f43857fd9761910d2679503a940eb42177.tar.gz
ECTester-343215f43857fd9761910d2679503a940eb42177.tar.zst
ECTester-343215f43857fd9761910d2679503a940eb42177.zip
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