diff options
author | Tristan Sloughter <tristan.sloughter@gmail.com> | 2015-07-13 14:33:12 -0500 |
---|---|---|
committer | Tristan Sloughter <tristan.sloughter@gmail.com> | 2015-07-13 14:33:12 -0500 |
commit | 57b2b988a15d5acb0de3c92d6bf58c71ab5efe43 (patch) | |
tree | 76a2fe5f0cdcc07d4180c7321f99d935f210955a /src/rebar_prv_compile.erl | |
parent | 3ef93babc1e0a6e84deda08ff48fea909084840d (diff) | |
parent | 360834dd40a265605415281dee659dac97344456 (diff) |
Merge pull request #611 from talentdeficit/eunit_tests_run_twice
Revert "don't add `{extra_src_dirs, ["test"]}` to `test` profile"
Diffstat (limited to 'src/rebar_prv_compile.erl')
-rw-r--r-- | src/rebar_prv_compile.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_compile.erl b/src/rebar_prv_compile.erl index 25d5193..f280b1f 100644 --- a/src/rebar_prv_compile.erl +++ b/src/rebar_prv_compile.erl @@ -141,7 +141,7 @@ copy_app_dirs(State, OldAppDir, AppDir) -> end, %% link to src_dirs to be adjacent to ebin is needed for R15 use of cover/xref - SrcDirs = rebar_dir:all_src_dirs(State, ["src"], ["test"]), + SrcDirs = rebar_dir:all_src_dirs(State, ["src"], []), [symlink_or_copy(OldAppDir, AppDir, Dir) || Dir <- ["priv", "include"] ++ SrcDirs]; false -> ok |