@@ -19,7 +19,6 @@ defmodule Mix.Tasks.App.StartTest do
1919 end
2020 end
2121
22- @ tag apps: [ :app_start_sample ]
2322 test "compiles and starts the project" do
2423 Mix.Project . push ( AppStartSample )
2524
@@ -50,7 +49,6 @@ defmodule Mix.Tasks.App.StartTest do
5049 end )
5150 end
5251
53- @ tag apps: [ :app_start_sample , :app_loaded_sample ]
5452 test "start checks for invalid configuration" , context do
5553 Mix.Project . push ( AppStartSample )
5654
@@ -77,7 +75,6 @@ defmodule Mix.Tasks.App.StartTest do
7775 end )
7876 end
7977
80- @ tag apps: [ :error ]
8178 test "validates Elixir version requirement" , context do
8279 Mix.ProjectStack . post_config ( elixir: "~> ~> 0.8.1" )
8380 Mix.Project . push ( WrongElixirProject )
@@ -89,7 +86,6 @@ defmodule Mix.Tasks.App.StartTest do
8986 end )
9087 end
9188
92- @ tag apps: [ :error ]
9389 test "validates the Elixir version with requirement" , context do
9490 Mix.Project . push ( WrongElixirProject )
9591
@@ -100,7 +96,6 @@ defmodule Mix.Tasks.App.StartTest do
10096 end )
10197 end
10298
103- @ tag apps: [ :error ]
10499 test "does not validate the Elixir version with requirement when disabled" , context do
105100 Mix.Project . push ( WrongElixirProject )
106101
@@ -136,7 +131,6 @@ defmodule Mix.Tasks.App.StartTest do
136131 def start ( _type , return ) , do: return
137132 end
138133
139- @ tag apps: [ :return_sample ]
140134 test "start points to report on error" , context do
141135 Mix.Project . push ( ReturnSample )
142136
@@ -155,7 +149,6 @@ defmodule Mix.Tasks.App.StartTest do
155149 end )
156150 end
157151
158- @ tag apps: [ :return_sample ]
159152 test "start points to report on exception error" , context do
160153 Mix.Project . push ( ReturnSample )
161154
@@ -177,7 +170,6 @@ defmodule Mix.Tasks.App.StartTest do
177170 end )
178171 end
179172
180- @ tag apps: [ :return_sample ]
181173 test "start points to report on bad return" , context do
182174 Mix.Project . push ( ReturnSample )
183175
@@ -212,7 +204,6 @@ defmodule Mix.Tasks.App.StartTest do
212204 def start ( _type , reason ) , do: exit ( reason )
213205 end
214206
215- @ tag apps: [ :exit_sample ]
216207 test "start points to report on exit" , context do
217208 Mix.Project . push ( ExitSample )
218209
@@ -230,7 +221,6 @@ defmodule Mix.Tasks.App.StartTest do
230221 end )
231222 end
232223
233- @ tag apps: [ :exit_sample ]
234224 test "start points to report on normal exit" , context do
235225 Mix.Project . push ( ExitSample )
236226
0 commit comments