You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2023/02/10 04:13:44 UTC

[couchdb] branch main updated (8bc485d9b -> 8a6c3bce2)

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

vatamane pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git


    from 8bc485d9b Improve directory structure for Dreyfus EUnit tests
     new f4311014f Stop citing the JavaScript integration tests
     new 8a6c3bce2 Update the list of the available test suite types

The 2 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:
 README-DEV.rst | 28 +++++-----------------------
 1 file changed, 5 insertions(+), 23 deletions(-)


[couchdb] 02/02: Update the list of the available test suite types

Posted by va...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 8a6c3bce2ac7b6df4d43fbd99aceb853ddbbe569
Author: Gabor Pali <ga...@ibm.com>
AuthorDate: Fri Feb 10 00:34:11 2023 +0100

    Update the list of the available test suite types
    
    Over time, many other kind of test suites have been added to the
    `Makefile`s, reflect this in the documentation.
---
 README-DEV.rst | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/README-DEV.rst b/README-DEV.rst
index 8ac9cc41c..524db9fd8 100644
--- a/README-DEV.rst
+++ b/README-DEV.rst
@@ -177,11 +177,13 @@ To run all the tests use run::
 
     make check
 
-You can also run each test suite individually via ``eunit`` and ``javascript``
-targets::
+You can also run each test suite individually via the ``eunit``, ``mango-test``,
+``elixir-suite``, and ``weatherreport-test`` targets::
 
     make eunit
-    make javascript
+    make mango-test
+    make elixit-suite
+    make weatherreport-test
 
 If you need to run specific Erlang tests, you can pass special "options"
 to make targets::


[couchdb] 01/02: Stop citing the JavaScript integration tests

Posted by va...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit f4311014fffab3252fc7561fbca4c6b3b7eca3b7
Author: Gabor Pali <ga...@ibm.com>
AuthorDate: Fri Feb 10 00:31:58 2023 +0100

    Stop citing the JavaScript integration tests
    
    The `make` targets for working with the JavaScript-based integration
    tests are no longer available and remove them to avoid confusing
    the readers.
---
 README-DEV.rst | 20 --------------------
 1 file changed, 20 deletions(-)

diff --git a/README-DEV.rst b/README-DEV.rst
index 38124b9c7..8ac9cc41c 100644
--- a/README-DEV.rst
+++ b/README-DEV.rst
@@ -205,26 +205,6 @@ options::
 
     make eunit EUNIT_OPTS="apps=couch,chttpd"
 
-JavaScript tests accepts only `suites` option, but in the same way::
-
-    # Run all JavaScript tests
-    make javascript
-
-    # Run only basic and design_options tests
-    make javascript suites="basic design_options"
-
-    # Ignore specific test suites via command line
-    make javascript ignore_js_suites="all_docs bulk_docs"
-
-    # Ignore specific test suites in makefile
-    ignore_js_suites=all_docs,bulk_docs
-
-Note that tests on the command line are delimited here by whitespace,
-not by comma.You can get list of all possible test targets with the
-following command::
-
-    make list-js-suites
-
 There is an additional Elixir-based integration test suite for
 Dreyfus, which is not run automatically by the ``check`` target but it
 could be done manually via the corresponding target::