rebar-tests.config 618 B

12345678910111213141516171819202122
  1. %% -*- mode: erlang -*-
  2. {eunit_opts,
  3. [%% This turns off the default output, MUST HAVE
  4. no_tty,
  5. %% Uses the progress formatter with ANSI-colored output
  6. {report, {eunit_progress, [colored
  7. %% uncomment to get a list of slowest running tests
  8. %%, profile
  9. ]}}
  10. ]}.
  11. {deps,
  12. [{eunit_formatters, ".*",
  13. {git, "git://github.com/seancribbs/eunit_formatters", "35e3e6ab2db48af776a1a21bba6f1461c97caacb"}}
  14. ]}.
  15. {pre_hooks,
  16. [{eunit,
  17. "erlc -I include/erlydtl_preparser.hrl -o test"
  18. " test/erlydtl_extension_testparser.yrl"}
  19. ]}.