|
@@ -7,4 +7,8 @@ pytest_plugins = [
|
|
|
|
|
|
def pytest_configure(config):
|
|
|
import warnings
|
|
|
- warnings.filterwarnings('error', '', Warning, r'(sentry|raven)')
|
|
|
+ # XXX(dcramer): Riak throws a UserWarning re:OpenSSL which isnt important
|
|
|
+ # to tests
|
|
|
+ # XXX(dramer): Kombu throws a warning due to transaction.commit_manually
|
|
|
+ # being used
|
|
|
+ warnings.filterwarnings('error', '', Warning, r'^(?!(|kombu|raven|riak|sentry))')
|