According to the docs for raco test there is the -s , which will check submodules with names other than test . But I can not do this job. If I have the following file:
;; example.rkt
Then, trying to pass foo , since the submodule name raco test results in:
$ raco test example.rkt -s foo testing example.rkt test: Given path
If I just use the name test :
;; example.rkt
Then raco test works fine:
$ raco test example.rkt testing example.rkt Hi, I'm running!
But I really want to have some test suites that I selectively run with various raco test calls.
source share