summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_MySQLdb_capabilities.py2
-rw-r--r--tests/test_MySQLdb_dbapi20.py2
-rw-r--r--tests/test_MySQLdb_nonstandard.py3
3 files changed, 5 insertions, 2 deletions
diff --git a/tests/test_MySQLdb_capabilities.py b/tests/test_MySQLdb_capabilities.py
index 60bbfad..ebec1e6 100644
--- a/tests/test_MySQLdb_capabilities.py
+++ b/tests/test_MySQLdb_capabilities.py
@@ -4,7 +4,7 @@ import unittest
import MySQLdb
import warnings
-warnings.filterwarnings('error')
+warnings.filterwarnings('ignore')
class test_MySQLdb(capabilities.DatabaseTest):
diff --git a/tests/test_MySQLdb_dbapi20.py b/tests/test_MySQLdb_dbapi20.py
index 44830e0..2832e32 100644
--- a/tests/test_MySQLdb_dbapi20.py
+++ b/tests/test_MySQLdb_dbapi20.py
@@ -3,6 +3,8 @@ import dbapi20
import unittest
import MySQLdb
from configdb import connection_kwargs
+import warnings
+warnings.simplefilter("ignore")
class test_MySQLdb(dbapi20.DatabaseAPI20Test):
driver = MySQLdb
diff --git a/tests/test_MySQLdb_nonstandard.py b/tests/test_MySQLdb_nonstandard.py
index 92fcbdc..a5c0e84 100644
--- a/tests/test_MySQLdb_nonstandard.py
+++ b/tests/test_MySQLdb_nonstandard.py
@@ -4,7 +4,8 @@ import _mysql
import MySQLdb
from MySQLdb.constants import FIELD_TYPE
from configdb import connection_factory
-
+import warnings
+warnings.simplefilter("ignore")
class TestDBAPISet(unittest.TestCase):
def test_set_equality(self):