summarylogtreecommitdiffstats
path: root/ignore-invalid-escape-sequence.patch
blob: 610bcde0cd884ec287877115b442457fb63f24df (plain)
1
2
3
4
5
6
7
8
9
10
11
diff --git a/master/buildbot/test/__init__.py b/master/buildbot/test/__init__.py
index 331e5c53b..f97f2766a 100644
--- a/master/buildbot/test/__init__.py
+++ b/master/buildbot/test/__init__.py
@@ -141,3 +141,6 @@ warnings.filterwarnings('ignore', r"The value of convert_charrefs will become Tr
 
 # Twisted 18.4+ adds a deprecation warning and still use the deprecated API in its own code!
 warnings.filterwarnings('ignore', ".*getClientIP was deprecated.*", DeprecationWarning)
+
+# temporarily disable to make tests pass
+warnings.filterwarnings('ignore', 'invalid escape sequence', DeprecationWarning)