diff options
author | Arun Isaac | 2025-08-24 10:03:00 +0100 |
---|---|---|
committer | Arun Isaac | 2025-08-24 10:03:00 +0100 |
commit | 26d1785dac92cdc8c4317cc57e08c5f7d44eb1eb (patch) | |
tree | 173f58002470a814e46ed27fdc7eba19f65db5a0 /.guix/cwl-conformance.scm | |
parent | 886d2fb0888251487941dc590001b16c36a4ed48 (diff) | |
download | ravanan-26d1785dac92cdc8c4317cc57e08c5f7d44eb1eb.tar.gz ravanan-26d1785dac92cdc8c4317cc57e08c5f7d44eb1eb.tar.lz ravanan-26d1785dac92cdc8c4317cc57e08c5f7d44eb1eb.zip |
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.
Diffstat (limited to '.guix/cwl-conformance.scm')
-rw-r--r-- | .guix/cwl-conformance.scm | 3 |
1 files changed, 1 insertions, 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 |