You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2019/11/19 18:21:24 UTC

[couchdb-local] 15/16: Support OTP-21

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

davisp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-local.git

commit b36d339db4571b414124bc5df42c2ccc4db4cc45
Author: Takeru Ohta <ph...@gmail.com>
AuthorDate: Fri Aug 3 15:58:13 2018 +0900

    Support OTP-21
---
 .travis.yml  |  3 ++-
 rebar.config | 10 ++++++++--
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 8e97859..d281764 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,6 +2,7 @@ language: erlang
 
 os: linux
 otp_release:
+  - 21.0
   - 20.0
   - 19.3
   - 18.3
@@ -17,7 +18,7 @@ script:
   - ./rebar3 dialyzer
   - ./rebar3 edoc
   - ./rebar3 cover
-  - ./rebar3 covertool generate
+  - ./rebar3 as test covertool generate
   - cp _build/test/covertool/local.covertool.xml ./cobertura.xml
 
 after_success:
diff --git a/rebar.config b/rebar.config
index cac510a..32d54d6 100644
--- a/rebar.config
+++ b/rebar.config
@@ -24,8 +24,6 @@
 
 {shell, [{apps, [local]}]}.
 
-{plugins, [rebar_covertool]}.
-
 {dialyzer,
  [
   {warnings, [error_handling, race_conditions, unmatched_returns, unknown, no_improper_lists]}
@@ -34,3 +32,11 @@
 {deps,
   [
   ]}.
+
+{profiles,
+ [
+  {test,
+   [
+    {plugins, [covertool]}
+   ]}
+ ]}.