Add testv recipe for more verbose logging
This commit is contained in:
parent
2c2e88eb04
commit
21a7a2e175
1 changed files with 5 additions and 2 deletions
7
justfile
7
justfile
|
@ -12,5 +12,8 @@ compile:
|
|||
cask emacs -batch -L . -L test --eval "(setq byte-compile-error-on-warn t)" -f batch-byte-compile $(cask files); (ret=$? ; cask clean-elc && exit $ret)
|
||||
|
||||
# Run unit tests matching a pattern (matches all tests by default)
|
||||
test pattern=".": compile
|
||||
cask exec buttercup -L . --pattern {{pattern}} --no-skip
|
||||
test pattern="." flags="": compile
|
||||
cask exec buttercup -L . --pattern {{pattern}} --no-skip {{flags}}
|
||||
|
||||
# Run unit tests matching a pattern with verbose debug info on failure
|
||||
testv pattern=".": (test pattern "--traceback full")
|
||||
|
|
Loading…
Reference in a new issue