Skip to content

Commit

Permalink
Return 0 from the sqlcreate test, not pytest.exit
Browse files Browse the repository at this point in the history
  • Loading branch information
inus committed May 14, 2024
1 parent 1bf3161 commit 7bd8563
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_sqlcreate.py
Original file line number Diff line number Diff line change
Expand Up @@ -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' ")

Expand Down

0 comments on commit 7bd8563

Please sign in to comment.