Skip to content

Commit

Permalink
feat(doctest_eunit): run tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
williamthome committed Jun 4, 2024
1 parent 6c71ef0 commit 8093a39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/doctest_eunit.erl
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ test(Tests) ->
test({_Desc, []}, _Opts) ->
ok;
test(Tests, rebar3_config) ->
eunit:test(Tests, rebar3_config_opts());
eunit:test({inparallel, Tests}, rebar3_config_opts());
test(Tests, Options) when is_list(Options) ->
eunit:test(Tests, Options).
eunit:test({inparallel, Tests}, Options).

%%%=====================================================================
%%% Support functions
Expand Down

0 comments on commit 8093a39

Please sign in to comment.