embed test suite into git annex; available by running: git annex test
I have seen some other programs do this, and think it's pretty cool. Means you can test wherever it's deployed, as well as at build time. My other reason for doing it is less happy. Cabal's handling of test suites sucks, requiring duplicated info, and even when that's done, it fails to preprocess hsc files here. Building it in avoids that and avoids having to explicitly tell cabal to enable test suites, which would then make it link the test executable every time, which is unnecessarily slow. This also has the benefit that now "make fast test" does a max speed build and tests it.
This commit is contained in:
parent
092f6aa48d
commit
d1dbf266f6
7 changed files with 55 additions and 38 deletions
|
@ -77,6 +77,7 @@ import qualified Command.WebApp
|
|||
import qualified Command.XMPPGit
|
||||
#endif
|
||||
#endif
|
||||
import qualified Command.Test
|
||||
|
||||
cmds :: [Command]
|
||||
cmds = concat
|
||||
|
@ -135,6 +136,7 @@ cmds = concat
|
|||
, Command.XMPPGit.def
|
||||
#endif
|
||||
#endif
|
||||
, Command.Test.def
|
||||
]
|
||||
|
||||
options :: [Option]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue