Silence unhandled exceptions in Thread.run() during unit-tests (#1802)

Python 3.8 changed the way how exceptions raised from the Thread.run() method are handled.
It resulted in unit-tests showing a couple of warnings. They are not important and we just silence them.
This commit is contained in:
Alexander Kukushkin
2020-12-16 19:37:51 +01:00
committed by GitHub
parent df9cadcdc4
commit 94b9f8fae6
3 changed files with 5 additions and 0 deletions
+2
View File
@@ -46,6 +46,8 @@ CLASSIFIERS = [
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
]