FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

[3.10] gh-93795: Use test.support TESTFN/unlink in sqlite3 tests (GH-93796) by erlend-aasland · Pull Request #93809 · python/cpython · GitHub

/ cpython Public
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .py  (1) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
32 changes: 15 additions & 17 deletions Lib/sqlite3/test/transactions.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -23,33 +23,31 @@
import os, unittest
import sqlite3 as sqlite

def get_db_path():
return "sqlite_testdb"
from test.support import LOOPBACK_TIMEOUT
from test.support.os_helper import TESTFN, unlink


TIMEOUT = LOOPBACK_TIMEOUT / 10


class TransactionTests(unittest.TestCase):
def setUp(self):
try:
os.remove(get_db_path())
except OSError:
pass

self.con1 = sqlite.connect(get_db_path(), timeout=0.1)
self.con1 = sqlite.connect(TESTFN, timeout=TIMEOUT)
self.cur1 = self.con1.cursor()

self.con2 = sqlite.connect(get_db_path(), timeout=0.1)
self.con2 = sqlite.connect(TESTFN, timeout=TIMEOUT)
self.cur2 = self.con2.cursor()

def tearDown(self):
self.cur1.close()
self.con1.close()
try:
self.cur1.close()
self.con1.close()

self.cur2.close()
self.con2.close()
self.cur2.close()
self.con2.close()

try:
os.unlink(get_db_path())
except OSError:
pass
finally:
unlink(TESTFN)

def test_dml_does_not_auto_commit_before(self):
self.cur1.execute("create table test(i)")
Expand Down

Back | FazBrowse Home | New Git URL