Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Remove unneeded prints
Browse files Browse the repository at this point in the history
  • Loading branch information
kutsurak committed Nov 22, 2018
1 parent fd42a1d commit 7ed5960
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ def monetdblite_cursor(request, tmp_path):
test_dbfarm = tmp_path.resolve().as_posix()

def finalizer():
print("Running cursor fixture finalizer")
monetdblite.shutdown()
if tmp_path.is_dir():
shutil.rmtree(test_dbfarm)
Expand All @@ -30,7 +29,6 @@ def monetdblite_cursor_autocommit(request, tmp_path):
test_dbfarm = tmp_path.resolve().as_posix()

def finalizer():
print("Running cursor autocommit fixture finalizer")
monetdblite.shutdown()
if tmp_path.is_dir():
shutil.rmtree(test_dbfarm)
Expand All @@ -48,7 +46,6 @@ def initialize_monetdblite(request, tmp_path):
test_dbfarm = tmp_path.resolve().as_posix()

def finalizer():
print("Running monetdblite finalizer")
monetdblite.shutdown()
if tmp_path.is_dir():
shutil.rmtree(test_dbfarm)
Expand Down

0 comments on commit 7ed5960

Please sign in to comment.