File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -37,13 +37,10 @@ defmodule Module.Types.IntegrationTest do
3737 end
3838
3939 setup_all do
40- previous = Application . get_env ( :elixir , :ansi_enabled , false )
4140 Application . put_env ( :elixir , :ansi_enabled , false )
42- Code . put_compiler_option ( :infer_signatures , [ :elixir ] )
4341
4442 on_exit ( fn ->
45- Application . put_env ( :elixir , :ansi_enabled , previous )
46- Code . put_compiler_option ( :infer_signatures , false )
43+ Application . put_env ( :elixir , :ansi_enabled , true )
4744 end )
4845 end
4946
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ File.mkdir_p!(path)
99Code . prepend_path ( path )
1010
1111Application . put_env ( :elixir , :ansi_enabled , true )
12- Code . compiler_options ( debug_info: true )
12+ Code . compiler_options ( debug_info: true , infer_signatures: [ :elixir ] )
1313
1414defmodule PathHelpers do
1515 def fixture_path ( ) do
You can’t perform that action at this time.
0 commit comments