[couchdb] branch add-tag-to-elixir updated (5c8bd3b -> 49260e5)

2020-09-28 Thread jiangphcn
This is an automated email from the ASF dual-hosted git repository.

jiangphcn pushed a change to branch add-tag-to-elixir
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 5c8bd3b  Add module tag to elixir test cases
 add 49260e5  Add module tag to elixir test cases

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5c8bd3b)
\
 N -- N -- N   refs/heads/add-tag-to-elixir (49260e5)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 test/elixir/test/view_compaction_test.exs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[couchdb] branch add-tag-to-elixir updated (70d665e -> 5c8bd3b)

2020-09-28 Thread jiangphcn
This is an automated email from the ASF dual-hosted git repository.

jiangphcn pushed a change to branch add-tag-to-elixir
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 70d665e  Add module tag to elixir test cases
 new 5c8bd3b  Add module tag to elixir test cases

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (70d665e)
\
 N -- N -- N   refs/heads/add-tag-to-elixir (5c8bd3b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 test/elixir/test/view_compaction_test.exs   | 4 ++--
 test/elixir/test/view_multi_key_design_test.exs | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)



[couchdb] 01/01: Add module tag to elixir test cases

2020-09-28 Thread jiangphcn
This is an automated email from the ASF dual-hosted git repository.

jiangphcn pushed a commit to branch add-tag-to-elixir
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 5c8bd3b71e4bfda541c7861e95c5cf0881bc94dd
Author: jiangph 
AuthorDate: Tue Sep 29 11:17:56 2020 +0800

Add module tag to elixir test cases

Some elixir test cases don't have actual module tag. Add tags to
help include or exclude them in CI test.
---
 test/elixir/test/reshard_all_docs_test.exs| 1 +
 test/elixir/test/reshard_basic_test.exs   | 1 +
 test/elixir/test/reshard_changes_feed.exs | 1 +
 test/elixir/test/update_documents_test.exs| 1 +
 test/elixir/test/view_collation_raw_test.exs  | 1 +
 test/elixir/test/view_collation_test.exs  | 1 +
 test/elixir/test/view_compaction_test.exs | 3 ++-
 test/elixir/test/view_conflicts_test.exs  | 1 +
 test/elixir/test/view_errors_test.exs | 1 +
 test/elixir/test/view_include_docs_test.exs   | 1 +
 test/elixir/test/view_multi_key_all_docs_test.exs | 1 +
 test/elixir/test/view_multi_key_design_test.exs   | 1 +
 test/elixir/test/view_sandboxing_test.exs | 1 +
 13 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/test/elixir/test/reshard_all_docs_test.exs 
b/test/elixir/test/reshard_all_docs_test.exs
index 042437e..bd3893d 100644
--- a/test/elixir/test/reshard_all_docs_test.exs
+++ b/test/elixir/test/reshard_all_docs_test.exs
@@ -6,6 +6,7 @@ defmodule ReshardAllDocsTest do
   Test _all_docs interaction with resharding
   """
 
+  @moduletag :reshard_all_docs
   @moduletag kind: :cluster
 
   setup do
diff --git a/test/elixir/test/reshard_basic_test.exs 
b/test/elixir/test/reshard_basic_test.exs
index 92f8145..6d91818 100644
--- a/test/elixir/test/reshard_basic_test.exs
+++ b/test/elixir/test/reshard_basic_test.exs
@@ -6,6 +6,7 @@ defmodule ReshardBasicTest do
   Test resharding basic functionality
   """
   
+  @moduletag :reshard_basic
   @moduletag kind: :cluster
 
   setup_all do
diff --git a/test/elixir/test/reshard_changes_feed.exs 
b/test/elixir/test/reshard_changes_feed.exs
index ad55e57..3086275 100644
--- a/test/elixir/test/reshard_changes_feed.exs
+++ b/test/elixir/test/reshard_changes_feed.exs
@@ -6,6 +6,7 @@ defmodule ReshardChangesFeedTest do
   Test _changes interaction with resharding
   """
 
+  @moduletag :reshard_changes_feed
   @moduletag kind: :cluster
 
   setup do
diff --git a/test/elixir/test/update_documents_test.exs 
b/test/elixir/test/update_documents_test.exs
index fcbdbea..bd5e0f1 100644
--- a/test/elixir/test/update_documents_test.exs
+++ b/test/elixir/test/update_documents_test.exs
@@ -1,6 +1,7 @@
 defmodule UpdateDocumentsTest do
   use CouchTestCase
 
+  @moduletag :docs
   @moduletag kind: :single_node
 
   @ddoc %{
diff --git a/test/elixir/test/view_collation_raw_test.exs 
b/test/elixir/test/view_collation_raw_test.exs
index 1bcd397..b9c40f6 100644
--- a/test/elixir/test/view_collation_raw_test.exs
+++ b/test/elixir/test/view_collation_raw_test.exs
@@ -6,6 +6,7 @@ defmodule ViewCollationRawTest do
   This is a port of the view_collation_raw.js suite
   """
 
+  @moduletag :view_collation_raw
   @moduletag kind: :single_node
 
   @values [
diff --git a/test/elixir/test/view_collation_test.exs 
b/test/elixir/test/view_collation_test.exs
index 1e3fec0..984d412 100644
--- a/test/elixir/test/view_collation_test.exs
+++ b/test/elixir/test/view_collation_test.exs
@@ -6,6 +6,7 @@ defmodule ViewCollationTest do
   This is a port of the view_collation.js suite
   """
 
+  @moduletag :view_collation
   @moduletag kind: :single_node
 
   @values [
diff --git a/test/elixir/test/view_compaction_test.exs 
b/test/elixir/test/view_compaction_test.exs
index 5bdd2ea..f827e82 100644
--- a/test/elixir/test/view_compaction_test.exs
+++ b/test/elixir/test/view_compaction_test.exs
@@ -6,8 +6,9 @@ defmodule ViewCompactionTest do
   This is a port of the view_compaction.js suite
   """
   
+  @moduletag :view_compaction
   @moduletag kind: :single_node
-  
+
   @num_docs 1000
 
   @ddoc %{
diff --git a/test/elixir/test/view_conflicts_test.exs 
b/test/elixir/test/view_conflicts_test.exs
index 9261b1e..89d9cb4 100644
--- a/test/elixir/test/view_conflicts_test.exs
+++ b/test/elixir/test/view_conflicts_test.exs
@@ -1,6 +1,7 @@
 defmodule ViewConflictsTest do
   use CouchTestCase
 
+  @moduletag :view_conflicts
   @moduletag kind: :single_node
 
   setup_all do
diff --git a/test/elixir/test/view_errors_test.exs 
b/test/elixir/test/view_errors_test.exs
index 80067ec..1e8f880 100644
--- a/test/elixir/test/view_errors_test.exs
+++ b/test/elixir/test/view_errors_test.exs
@@ -1,6 +1,7 @@
 defmodule ViewErrorsTest do
   use CouchTestCase
 
+  @moduletag :view_errors
   @moduletag kind: :single_node
 
   @document %{integer: 1, string: "1", array: [1, 2, 3]}
diff --git a/test/elixir/test/view_include_docs_test.exs 
b/test/elixir/test/view_include_docs_test.exs
index a777530..1c

[couchdb] 01/01: Add module tag to elixir test cases

2020-09-28 Thread jiangphcn
This is an automated email from the ASF dual-hosted git repository.

jiangphcn pushed a commit to branch add-tag-to-elixir
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 70d665e1ef83c79c3fcfd4561f3dd21e85dbc81e
Author: jiangph 
AuthorDate: Tue Sep 29 11:03:45 2020 +0800

Add module tag to elixir test cases

Some elixir test cases don't have actual module tag. Add tags to
help include or exclude them in CI test.
---
 test/elixir/test/reshard_all_docs_test.exs| 1 +
 test/elixir/test/reshard_basic_test.exs   | 1 +
 test/elixir/test/reshard_changes_feed.exs | 1 +
 test/elixir/test/update_documents_test.exs| 1 +
 test/elixir/test/view_collation_raw_test.exs  | 1 +
 test/elixir/test/view_collation_test.exs  | 1 +
 test/elixir/test/view_compaction_test.exs | 3 ++-
 test/elixir/test/view_conflicts_test.exs  | 1 +
 test/elixir/test/view_errors_test.exs | 1 +
 test/elixir/test/view_include_docs_test.exs   | 1 +
 test/elixir/test/view_multi_key_all_docs_test.exs | 1 +
 test/elixir/test/view_multi_key_design_test.exs   | 3 ++-
 test/elixir/test/view_sandboxing_test.exs | 1 +
 13 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/test/elixir/test/reshard_all_docs_test.exs 
b/test/elixir/test/reshard_all_docs_test.exs
index 042437e..bd3893d 100644
--- a/test/elixir/test/reshard_all_docs_test.exs
+++ b/test/elixir/test/reshard_all_docs_test.exs
@@ -6,6 +6,7 @@ defmodule ReshardAllDocsTest do
   Test _all_docs interaction with resharding
   """
 
+  @moduletag :reshard_all_docs
   @moduletag kind: :cluster
 
   setup do
diff --git a/test/elixir/test/reshard_basic_test.exs 
b/test/elixir/test/reshard_basic_test.exs
index 92f8145..6d91818 100644
--- a/test/elixir/test/reshard_basic_test.exs
+++ b/test/elixir/test/reshard_basic_test.exs
@@ -6,6 +6,7 @@ defmodule ReshardBasicTest do
   Test resharding basic functionality
   """
   
+  @moduletag :reshard_basic
   @moduletag kind: :cluster
 
   setup_all do
diff --git a/test/elixir/test/reshard_changes_feed.exs 
b/test/elixir/test/reshard_changes_feed.exs
index ad55e57..3086275 100644
--- a/test/elixir/test/reshard_changes_feed.exs
+++ b/test/elixir/test/reshard_changes_feed.exs
@@ -6,6 +6,7 @@ defmodule ReshardChangesFeedTest do
   Test _changes interaction with resharding
   """
 
+  @moduletag :reshard_changes_feed
   @moduletag kind: :cluster
 
   setup do
diff --git a/test/elixir/test/update_documents_test.exs 
b/test/elixir/test/update_documents_test.exs
index fcbdbea..bd5e0f1 100644
--- a/test/elixir/test/update_documents_test.exs
+++ b/test/elixir/test/update_documents_test.exs
@@ -1,6 +1,7 @@
 defmodule UpdateDocumentsTest do
   use CouchTestCase
 
+  @moduletag :docs
   @moduletag kind: :single_node
 
   @ddoc %{
diff --git a/test/elixir/test/view_collation_raw_test.exs 
b/test/elixir/test/view_collation_raw_test.exs
index 1bcd397..b9c40f6 100644
--- a/test/elixir/test/view_collation_raw_test.exs
+++ b/test/elixir/test/view_collation_raw_test.exs
@@ -6,6 +6,7 @@ defmodule ViewCollationRawTest do
   This is a port of the view_collation_raw.js suite
   """
 
+  @moduletag :view_collation_raw
   @moduletag kind: :single_node
 
   @values [
diff --git a/test/elixir/test/view_collation_test.exs 
b/test/elixir/test/view_collation_test.exs
index 1e3fec0..984d412 100644
--- a/test/elixir/test/view_collation_test.exs
+++ b/test/elixir/test/view_collation_test.exs
@@ -6,6 +6,7 @@ defmodule ViewCollationTest do
   This is a port of the view_collation.js suite
   """
 
+  @moduletag :view_collation
   @moduletag kind: :single_node
 
   @values [
diff --git a/test/elixir/test/view_compaction_test.exs 
b/test/elixir/test/view_compaction_test.exs
index 5bdd2ea..e27da52 100644
--- a/test/elixir/test/view_compaction_test.exs
+++ b/test/elixir/test/view_compaction_test.exs
@@ -5,7 +5,8 @@ defmodule ViewCompactionTest do
   Test CouchDB View Compaction Behavior
   This is a port of the view_compaction.js suite
   """
-  
+
+  @moduletag :view_compaction
   @moduletag kind: :single_node
   
   @num_docs 1000
diff --git a/test/elixir/test/view_conflicts_test.exs 
b/test/elixir/test/view_conflicts_test.exs
index 9261b1e..89d9cb4 100644
--- a/test/elixir/test/view_conflicts_test.exs
+++ b/test/elixir/test/view_conflicts_test.exs
@@ -1,6 +1,7 @@
 defmodule ViewConflictsTest do
   use CouchTestCase
 
+  @moduletag :view_conflicts
   @moduletag kind: :single_node
 
   setup_all do
diff --git a/test/elixir/test/view_errors_test.exs 
b/test/elixir/test/view_errors_test.exs
index 80067ec..1e8f880 100644
--- a/test/elixir/test/view_errors_test.exs
+++ b/test/elixir/test/view_errors_test.exs
@@ -1,6 +1,7 @@
 defmodule ViewErrorsTest do
   use CouchTestCase
 
+  @moduletag :view_errors
   @moduletag kind: :single_node
 
   @document %{integer: 1, string: "1", array: [1, 2, 3]}
diff --git a/test/elixir/test/view_include_docs_test.exs 
b/test/elixir/test/view_include_d

[couchdb] branch add-tag-to-elixir created (now 70d665e)

2020-09-28 Thread jiangphcn
This is an automated email from the ASF dual-hosted git repository.

jiangphcn pushed a change to branch add-tag-to-elixir
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


  at 70d665e  Add module tag to elixir test cases

This branch includes the following new commits:

 new 70d665e  Add module tag to elixir test cases

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.