Skip to content

Commit 5067449

Browse files
committed
Add DROP DATABASE at start of MySQL setup
Closes simonw#50
1 parent b7c95fc commit 5067449

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/conftest.py

+1
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ def setup_mysql():
158158
kwargs["port"] = int(bits.port)
159159
db = MySQLdb.connect(**kwargs)
160160
cursor = db.cursor()
161+
cursor.execute("DROP DATABASE {};".format(bits.database))
161162
cursor.execute("CREATE DATABASE IF NOT EXISTS {};".format(bits.database))
162163
cursor.execute("USE {};".format(bits.database))
163164
cursor.execute(MYSQL_SQL)

0 commit comments

Comments
 (0)