Skip to content

Commit

Permalink
ci: Attempt to expose OSError on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 4, 2023
1 parent 9762f66 commit 034a92c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_utilities/test_csvsql.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ def setUp(self):
self.db_file = 'foo.db'

def tearDown(self):
try:
if os.path.exists(self.db_file):
os.remove(self.db_file)
except OSError:
pass

def test_create_table(self):
sql = self.get_output(['--tables', 'foo', 'examples/testfixed_converted.csv'])
Expand Down

0 comments on commit 034a92c

Please sign in to comment.