summaryrefslogtreecommitdiff
path: root/src/rebar_prv_common_test.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-11-01 19:04:19 -0600
committerTristan Sloughter <t@crashfast.com>2015-11-01 19:04:19 -0600
commitd119cfcf25d7dd449019f65d578304959b3c7c09 (patch)
treeda85f23627345dc88eda0f825c34f5ba0cbeeab8 /src/rebar_prv_common_test.erl
parente72e46fc9d23d8467cd58d1728175ae59d2a7c44 (diff)
parent67bf54d04d332bbff961ab4e8ab730858bcdce7a (diff)
Merge pull request #904 from talentdeficit/soft_purge_opt
add an option to soft purge rather than purge old code
Diffstat (limited to 'src/rebar_prv_common_test.erl')
-rw-r--r--src/rebar_prv_common_test.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_common_test.erl b/src/rebar_prv_common_test.erl
index 1f4c02d..32d4433 100644
--- a/src/rebar_prv_common_test.erl
+++ b/src/rebar_prv_common_test.erl
@@ -38,7 +38,7 @@ init(State) ->
-spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}.
do(State) ->
?INFO("Running Common Test suites...", []),
- rebar_utils:update_code(rebar_state:code_paths(State, all_deps)),
+ rebar_utils:update_code(rebar_state:code_paths(State, all_deps), [soft_purge]),
%% Run ct provider prehooks
Providers = rebar_state:providers(State),