diff --git a/test/integration/etl/test_abort.py b/test/integration/etl/test_abort.py index 412121e..7ca388a 100644 --- a/test/integration/etl/test_abort.py +++ b/test/integration/etl/test_abort.py @@ -69,7 +69,7 @@ def test_abort_etlhelper_threads(do_etl, log_keyword, tmpdir, caplog): """ # Arrange # Create and populate a temporary SQLite database - db = tmpdir / 'test.db' + db = str(tmpdir / 'test.db') # sqlite3 on Python 3.6 requires a string with sqlite3.connect(db) as conn: execute("CREATE TABLE test (id INTEGER)", conn)