summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Yelin <elinsn@gmail.com>2020-12-04 13:17:00 +0300
committerJens Geyer <jensg@apache.org>2020-12-04 21:03:01 +0100
commit66777ad21551d5d2f213fe06b53336988fe29136 (patch)
treec479439274c28ec2d290a01ba181da49ef82db15
parentc0619235bdaaaf16941abbf8ba77a84a06708178 (diff)
downloadthrift-66777ad21551d5d2f213fe06b53336988fe29136.tar.gz
Fix Erlang CI: Add gen-erl into test's path
Client: erl Patch: Sergey Yelin This closes #2290
-rw-r--r--lib/erl/rebar.config10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/erl/rebar.config b/lib/erl/rebar.config
index 1b32947a5..ab2c255c6 100644
--- a/lib/erl/rebar.config
+++ b/lib/erl/rebar.config
@@ -1,3 +1,11 @@
{erl_opts, [{platform_define, "^R.*", otp16_or_less}, debug_info]}.
-{profiles, [{test, [{deps, [meck]}]}]}.
+{profiles, [
+ {test, [
+ {deps, [meck]},
+ {eunit_tests, [
+ {dir, "test"},
+ {dir, "test/gen-erl"}
+ ]}
+ ]}
+]}.