You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2020/12/04 20:03:28 UTC

[thrift] branch master updated: Fix Erlang CI: Add gen-erl into test's path Client: erl Patch: Sergey Yelin

This is an automated email from the ASF dual-hosted git repository.

jensg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git


The following commit(s) were added to refs/heads/master by this push:
     new 66777ad  Fix Erlang CI: Add gen-erl into test's path Client: erl Patch: Sergey Yelin
66777ad is described below

commit 66777ad21551d5d2f213fe06b53336988fe29136
Author: Sergey Yelin <el...@gmail.com>
AuthorDate: Fri Dec 4 13:17:00 2020 +0300

    Fix Erlang CI: Add gen-erl into test's path
    Client: erl
    Patch: Sergey Yelin
    
    This closes #2290
---
 lib/erl/rebar.config | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/lib/erl/rebar.config b/lib/erl/rebar.config
index 1b32947..ab2c255 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"}
+        ]}
+    ]}
+]}.