Skip to content

Commit 9fa6db5

Browse files
committed
Add test submodules to make raco test clean.
1 parent 45a543d commit 9fa6db5

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

commit.rkt

+5-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,8 @@
5454
(write-bytes #"\n" o)
5555
(close-output-port o)
5656

57-
(subprocess-wait p))
57+
(subprocess-wait p)
58+
59+
;; to avoid raco test failures
60+
(module test racket)
61+
)

main.rkt

+2
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,5 @@
4747
(define end-time (chop:go dest-dir tmp-dir dry-run?))
4848

4949
(printf "\n### git-slice: finished in ~a total seconds\n" (/ (- end-time init-time) 1000.))
50+
51+
(module test racket)

prune.rkt

+3
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,7 @@
108108
(lambda (o) (fprintf o "~a\npost: ~s\n" commit keeps))
109109
'append)
110110

111+
;; to avoid raco test failures
112+
(module test racket)
113+
111114
)

0 commit comments

Comments
 (0)