diff options
author | Mickael Remond <mremond@process-one.net> | 2016-03-31 15:37:21 +0200 |
---|---|---|
committer | Mickael Remond <mremond@process-one.net> | 2016-03-31 15:37:21 +0200 |
commit | 7988e2e3503922b84aedb363315dfd9c95ed32d4 (patch) | |
tree | b91fd1f477e66d5da61f1f033ff99a6c18477114 /test | |
parent | Try keeping names of test same as master to limit merge conflicts (diff) | |
parent | Test / Document ejabberd_commands checks (diff) |
Merge lastest commits from master
Diffstat (limited to 'test')
-rw-r--r-- | test/elixir_SUITE.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/elixir_SUITE.erl b/test/elixir_SUITE.erl index f2c64773..7047d221 100644 --- a/test/elixir_SUITE.erl +++ b/test/elixir_SUITE.erl @@ -66,7 +66,9 @@ undefined_function(Module, Func, Args) -> error_handler:undefined_function(Module, Func,Args). run_elixir_test(Func) -> - 'Elixir.ExUnit':start([]), + %% Elixir tests can be tagged as follow to be ignored (place before test start) + %% @tag pending: true + 'Elixir.ExUnit':start([{exclude, [{pending, true}]}]), filelib:fold_files(test_dir(), ".*\\.exs\$", true, fun (File, N) -> 'Elixir.Code':require_file(list_to_binary(File)), |