From 1f9dfd8048c16b13a498c3b535d55917bc87208f Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Fri, 1 May 2020 14:23:00 -0600 Subject: [PATCH] remove test that never did anything All this ever checked was that the app was created in _checkouts by the test code. Not really useful. --- test/rebar_compile_SUITE.erl | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/test/rebar_compile_SUITE.erl b/test/rebar_compile_SUITE.erl index 55e0cda5..3ec818f4 100644 --- a/test/rebar_compile_SUITE.erl +++ b/test/rebar_compile_SUITE.erl @@ -48,7 +48,7 @@ all() -> groups() -> [{basic_app, [], [build_basic_app, paths_basic_app, clean_basic_app]}, {release_apps, [], [build_release_apps, paths_release_apps, clean_release_apps]}, - {checkout_apps, [], [build_checkout_apps, paths_checkout_apps]}, + {checkout_apps, [], [paths_checkout_apps]}, {checkout_deps, [], [build_checkout_deps, paths_checkout_deps]}, {basic_srcdirs, [], [build_basic_srcdirs, paths_basic_srcdirs]}, {release_srcdirs, [], [build_release_srcdirs, @@ -264,13 +264,6 @@ build_release_apps(Config) -> {ok, [{app, Name1}, {app, Name2}]} ). -build_checkout_apps(Config) -> - [Name1, Name2] = ?config(app_names, Config), - rebar_test_utils:run_and_check( - Config, [], ["compile"], - {ok, [{app, Name1}, {checkout, Name2}]} - ). - build_checkout_deps(Config) -> AppDir = ?config(apps, Config), [Name1, Name2] = ?config(app_names, Config),