diff options
Diffstat (limited to '')
-rw-r--r-- | tests/migrations/run-tests.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/migrations/run-tests.scm b/tests/migrations/run-tests.scm index b4ad260bb..1e4bb704b 100644 --- a/tests/migrations/run-tests.scm +++ b/tests/migrations/run-tests.scm @@ -22,4 +22,7 @@ (> (length tests) 1)) run-tests-parallel run-tests-sequential))) - (runner (map (lambda (t) (test::scm #f t t)) tests))) + (runner (map (lambda (name) + (test::scm #f + (path-join "tests" "migrations" name) + (in-srcdir "tests" "migrations" name))) tests))) |