mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
Merge pull request #24 from legoscia/master
Allow specifying eunit suite run order in 'suites'
This commit is contained in:
commit
76405da6d7
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ filter_suites(Config, Modules) ->
|
|||
filter_suites1(Modules, []) ->
|
||||
Modules;
|
||||
filter_suites1(Modules, Suites) ->
|
||||
[M || M <- Modules, lists:member(M, Suites)].
|
||||
[M || M <- Suites, lists:member(M, Modules)].
|
||||
|
||||
%%
|
||||
%% == get matching tests ==
|
||||
|
|
Loading…
Reference in a new issue