Skip to content

Commit

Permalink
fix: moving ltest to test deps from main deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mpope9 committed Sep 3, 2024
1 parent a25ea7b commit ab1270e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions priv/templates/rebar.config.escript.tpl
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{erl_opts, [no_debug_info]}.

{deps, [
{lfe, "~> 2.1"},
{ltest, "~> 0.13"}
{lfe, "~> 2.1"}
]}.

{plugins, [
Expand All @@ -26,7 +25,8 @@
{profiles, [
{test, [
{deps, [
{proper, "1.4.0"}
{proper, "1.4.0"},
{ltest, "~> 0.13"}
]},
{plugins, [
{rebar3_proper, "0.12.1"}
Expand Down
6 changes: 3 additions & 3 deletions priv/templates/rebar.config.main.tpl
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{erl_opts, [debug_info]}.

{deps, [
{lfe, "~> 2.1"},
{ltest, "~> 0.13"}
{lfe, "~> 2.1"}
]}.

{plugins, [
Expand All @@ -25,7 +24,8 @@
{profiles, [
{test, [
{deps, [
{proper, "1.4.0"}
{proper, "1.4.0"},
{ltest, "~> 0.13"}
]},
{plugins, [
{rebar3_proper, "0.12.1"}
Expand Down
6 changes: 3 additions & 3 deletions priv/templates/rebar.config.release.tpl
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{erl_opts, [debug_info]}.

{deps, [
{lfe, "~> 2.1"},
{ltest, "~> 0.13"}
{lfe, "~> 2.1"}
]}.

{plugins, [
Expand Down Expand Up @@ -43,7 +42,8 @@
]},
{test, [
{deps, [
{proper, "1.4.0"}
{proper, "1.4.0"},
{ltest, "~> 0.13"}
]},
{plugins, [
{rebar3_proper, "0.12.1"}
Expand Down
6 changes: 3 additions & 3 deletions priv/templates/rebar.config.tpl
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{erl_opts, [debug_info]}.

{deps, [
{lfe, "~> 2.1"},
{ltest, "~> 0.13"}
{lfe, "~> 2.1"}
]}.

{plugins, [
Expand All @@ -21,7 +20,8 @@
{profiles, [
{test, [
{deps, [
{proper, "1.4.0"}
{proper, "1.4.0"},
{ltest, "~> 0.13"}
]},
{plugins, [
{rebar3_proper, "0.12.1"}
Expand Down

0 comments on commit ab1270e

Please sign in to comment.