From 7bd856330139d6afec4f4ec61ecbabb7d3932a43 Mon Sep 17 00:00:00 2001 From: Inus Scheepers Date: Tue, 14 May 2024 18:55:52 +0200 Subject: [PATCH] Return 0 from the sqlcreate test, not pytest.exit --- test/test_sqlcreate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_sqlcreate.py b/test/test_sqlcreate.py index 889e84b..48ee0a2 100644 --- a/test/test_sqlcreate.py +++ b/test/test_sqlcreate.py @@ -27,7 +27,8 @@ def test_sqlcreate(): print("Creating new" + DB) if os.getenv('GITHUB_ACTIONS'): # todo fixme - pytest.exit('Skipping create database on Github Actions',returncode=0) + #pytest.exit('Skipping create database on Github Actions',returncode=0) + return 0 else: con = fdb.create_database("create database 'test/TEST.fdb' ")