Skip to content

Commit

Permalink
Merge pull request #17 from markusn/rebar3-test-folder-fix
Browse files Browse the repository at this point in the history
Don't assume there is a test folder
  • Loading branch information
markusn committed Apr 15, 2016
2 parents 8d2fe1c + e87535f commit 5e32c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rebar3_coveralls.erl
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ cover_paths(State) ->
lists:foreach(fun(App) ->
AppDir = rebar_app_info:out_dir(App),
true = code:add_path(filename:join([AppDir, "ebin"])),
true = code:add_path(filename:join([AppDir, "test"]))
_ = code:add_path(filename:join([AppDir, "test"]))
end,
rebar_state:project_apps(State)),
_ = code:add_path(filename:join([rebar_dir:base_dir(State), "test"])),
Expand Down

0 comments on commit 5e32c7a

Please sign in to comment.