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 2020/01/09 17:42:39 UTC

[couchdb] 02/06: Include JavaScript test results in report

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

davisp pushed a commit to branch feat/improve-javascript-test-reports
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit d97b7a142cbbc13686ea246fd52f639a71149e9f
Author: Paul J. Davis <pa...@gmail.com>
AuthorDate: Thu Jan 9 11:12:49 2020 -0600

    Include JavaScript test results in report
---
 build-aux/show-test-results.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/build-aux/show-test-results.py b/build-aux/show-test-results.py
index 0503965..c465fcf 100755
--- a/build-aux/show-test-results.py
+++ b/build-aux/show-test-results.py
@@ -12,6 +12,7 @@ TEST_COLLECTIONS = {
     "EUnit": "src/**/.eunit/*.xml",
     "EXUnit": "_build/integration/lib/couchdbtest/*.xml",
     "Mango": "src/mango/*.xml",
+    "JavaScript": "test/javascript/*.xml"
 }
 
 
@@ -377,7 +378,7 @@ def main():
     args = parse_args()
 
     if not args.collection:
-        args.collection = ["eunit", "exunit", "mango"]
+        args.collection = ["eunit", "exunit", "mango", "javascript"]
 
     collections = []
     for (name, pattern) in TEST_COLLECTIONS.items():