changeset 32071:31a68f3ced07

maint: Merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 02 May 2023 11:38:56 +0200
parents 13362cd35b72 (current diff) bc46d7c2768f (diff)
children 24752aa8be11
files .github/workflows/make.yaml
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/make.yaml	Sun Apr 30 15:44:32 2023 -0700
+++ b/.github/workflows/make.yaml	Tue May 02 11:38:56 2023 +0200
@@ -342,8 +342,8 @@
       - name: analyze test suite results
         # Make sure the test summary lists 0 "FAIL"s and no "REGRESSION"
         run: |
-          [ -n "$(grep -e "FAIL\s*0" ./test-suite.log)" ] || echo "::warning::At least one test failed"
-          [ -z "$(grep -e "REGRESSION" ./test-suite.log)" ] || echo "::warning::At least one regression in test suite"
+          [ -n "$(grep -e "FAIL\s*0" ./test-suite.log)" ] || exit 1
+          [ -z "$(grep -e "REGRESSION" ./test-suite.log)" ] || exit 1
           echo Finished analyzing test suite results.
 
       - name: test history file creation
--- a/scripts/specfun/betaincinv.m	Sun Apr 30 15:44:32 2023 -0700
+++ b/scripts/specfun/betaincinv.m	Tue May 02 11:38:56 2023 +0200
@@ -262,7 +262,7 @@
 %! a = [0.1:0.1:1];
 %! [x,a,b] = ndgrid (x,a,a);
 %! xx = betaincinv (betainc (x, a, b, "upper"), a, b, "upper");
-%! assert (xx, x, 5e-15);
+%! assert (xx, x, 24*eps);
 
 ## Test the conservation of the input class
 %!assert (class (betaincinv (0.5, 1, 1)), "double")