about summary refs log tree commit diff
path: root/HACKING.md
diff options
context:
space:
mode:
Diffstat (limited to 'HACKING.md')
-rw-r--r--HACKING.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/HACKING.md b/HACKING.md
index 7bb6691..e456242 100644
--- a/HACKING.md
+++ b/HACKING.md
@@ -7,12 +7,12 @@ guix shell -L .guix -Df manifest.scm
 
 # Run end-to-end tests
 
-ravanan comes with a suite of end-to-end tests under `e2e-tests`. To run them, first compile the required CWL workflows from the ccwl sources.
+ravanan comes with a suite of end-to-end tests under `e2e-tests`. End-to-end tests require a running Guix daemon. To run them, create and change into a new empty directory.
 ```
-make -C e2e-tests
+mkdir rundir
+cd rundir
 ```
-Then, run cwltest like so:
+Then, build and run the tests.
 ```
-make -C e2e-tests check
+$(guix build -L ../.guix -e '(@ (cwl-conformance) e2e-tests)')
 ```
-End-to-end tests require a running Guix daemon.