From 26d1785dac92cdc8c4317cc57e08c5f7d44eb1eb Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sun, 24 Aug 2025 10:03:00 +0100 Subject: guix: Do not create store when running cwltest suite. ravanan creates the store directory automatically if it does not exist. So, there is no need to create it before running cwltest. --- .guix/cwl-conformance.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.guix/cwl-conformance.scm b/.guix/cwl-conformance.scm index 8bcad35..465bf77 100644 --- a/.guix/cwl-conformance.scm +++ b/.guix/cwl-conformance.scm @@ -35,13 +35,12 @@ (match (command-line) ((_ cwltest-suite) - (for-each mkdir - (list "tmpdir" "store")) ;; cwltest writes out output directories to TMPDIR, but does not ;; clean up after. So, we set TMPDIR to our own temporary directory ;; that we can manage easily. See pending issue on cleaning up ;; temporary output directories: ;; https://github.com/common-workflow-language/cwltest/issues/249 + (mkdir "tmpdir") (setenv "TMPDIR" "tmpdir") (invoke #$(file-append cwltest "/bin/cwltest") "--test" cwltest-suite -- cgit 1.4.1