From 9531141d195dac6c7956b766b5585345381d4333 Mon Sep 17 00:00:00 2001 From: pavel-zotov Date: Tue, 21 Feb 2023 11:06:49 +0300 Subject: [PATCH] Added/Updated tests\bugs\gh_7288_test.py: removed 'set bail on' otherwise this test silently quits on Linux --- tests/bugs/gh_7288_test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/bugs/gh_7288_test.py b/tests/bugs/gh_7288_test.py index d646151d..18a89dfd 100644 --- a/tests/bugs/gh_7288_test.py +++ b/tests/bugs/gh_7288_test.py @@ -25,8 +25,7 @@ def test_1(act: Action, db_tmp: Path): chk_sql = f""" set list on; - set bail on; - rollback; + -- NB: do NOT use 'set bail on' here! create database 'localhost:{db_tmp}' user {act.db.user} password '{act.db.password}'; savepoint A1; release savepoint A1 only;