diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-03-14 17:05:36 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-03-14 17:07:23 +0100 |
commit | 6ecc5b96a9854382682fd1c9231133c08dae7b17 (patch) | |
tree | 3703f769c52b951a6233a3b92736b84cc47700ed /Makefile | |
parent | 0b4ae3af662587a69e6893b7f6c347d90912c48f (diff) | |
download | pandoc-6ecc5b96a9854382682fd1c9231133c08dae7b17.tar.gz |
Use tasty for tests rather than test-framework.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,14 +4,14 @@ sourcefiles=$(shell find pandoc.hs src test -name '*.hs') BRANCH?=master quick: - stack install --flag 'pandoc:embed_data_files' --fast --test --test-arguments='-j4' + stack install --flag 'pandoc:embed_data_files' --fast --test --test-arguments='-j4 --hide-successes' full: stack install --flag 'pandoc:embed_data_files' --test --test-arguments='-j4' --pedantic stack haddock test: - stack test --test-arguments='-j4' + stack test --flag 'pandoc:embed_data_files' --fast --test-arguments='-j4 --hide-successes' bench: stack bench |