]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
filter formatargspec deprecation warning
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 21 Jul 2019 18:10:12 +0000 (14:10 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 21 Jul 2019 18:10:12 +0000 (14:10 -0400)
in order to allow the 1.1 branch to include its test suite
under Python 3, filter out the formatargspec warning

Change-Id: I20aeddb6bb88817f7d2b1d50543df2aa4d43a8cc

lib/sqlalchemy/testing/warnings.py

index 46e7c54dbbfb9f8bd81bd28a4e03dea33418f0ce..941fbf1c5ebca48854f6198e6418b1c6503fafeb 100644 (file)
@@ -26,6 +26,8 @@ def setup_filters():
         "ignore", category=DeprecationWarning, message=".*StopIteration")
     warnings.filterwarnings(
         "ignore", category=DeprecationWarning, message=".*inspect.getargspec")
+    warnings.filterwarnings(
+        "ignore", category=DeprecationWarning, message=".*formatargspec")
 
 
 def assert_warnings(fn, warning_msgs, regex=False):