Skip to content

Commit

Permalink
code_evals to fix the ci
Browse files Browse the repository at this point in the history
  • Loading branch information
izelnakri committed May 25, 2017
1 parent 5fd9ed6 commit aa80590
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/paper_trail/bang_functions_simple_mode_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ defmodule PaperTrailTest.SimpleModeBangFunctions do

setup_all do
Application.put_env(:paper_trail, :strict_mode, false)
Code.eval_file("lib/paper_trail.ex")
Code.eval_file("lib/version.ex")
:ok
end

Expand Down
2 changes: 2 additions & 0 deletions test/paper_trail/bang_functions_strict_mode_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ defmodule PaperTrailTest.StrictModeBangFunctions do

setup_all do
Application.put_env(:paper_trail, :strict_mode, true)
Code.eval_file("lib/paper_trail.ex")
Code.eval_file("lib/version.ex")
:ok
end

Expand Down
2 changes: 2 additions & 0 deletions test/paper_trail/paper_trail_version_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ defmodule PaperTrailTest.Version do

setup_all do
Application.put_env(:paper_trail, :strict_mode, false)
Code.eval_file("lib/paper_trail.ex")
Code.eval_file("lib/version.ex")
:ok
end

Expand Down
2 changes: 2 additions & 0 deletions test/paper_trail_strict_mode_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ defmodule PaperTrailStrictModeTest do

setup_all do
Application.put_env(:paper_trail, :strict_mode, true)
Code.eval_file("lib/paper_trail.ex")
Code.eval_file("lib/version.ex")
:ok
end

Expand Down
2 changes: 2 additions & 0 deletions test/paper_trail_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ defmodule PaperTrailTest do

setup_all do
Application.put_env(:paper_trail, :strict_mode, false)
Code.eval_file("lib/paper_trail.ex")
Code.eval_file("lib/version.ex")
:ok
end

Expand Down

0 comments on commit aa80590

Please sign in to comment.