We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7c95fc commit 5067449Copy full SHA for 5067449
tests/conftest.py
@@ -158,6 +158,7 @@ def setup_mysql():
158
kwargs["port"] = int(bits.port)
159
db = MySQLdb.connect(**kwargs)
160
cursor = db.cursor()
161
+ cursor.execute("DROP DATABASE {};".format(bits.database))
162
cursor.execute("CREATE DATABASE IF NOT EXISTS {};".format(bits.database))
163
cursor.execute("USE {};".format(bits.database))
164
cursor.execute(MYSQL_SQL)
0 commit comments