diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_eunit.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rebar_eunit.erl b/src/rebar_eunit.erl index 55e6a72..c997842 100644 --- a/src/rebar_eunit.erl +++ b/src/rebar_eunit.erl @@ -666,7 +666,8 @@ reset_after_eunit({OldProcesses, WasAlive, OldAppEnvs, _OldACs}) -> end, ok = application:unset_env(App, K) end || App <- Apps, App /= rebar, - {K, _V} <- application:get_all_env(App)], + {K, _V} <- application:get_all_env(App), + K =/= included_applications], reconstruct_app_env_vars(Apps), |