Ignore getrlimit error during tests

This commit is contained in:
Florian Bruhin 2017-03-29 12:45:55 +02:00
parent 708b46d6c0
commit bf66bb221f

View File

@ -77,6 +77,8 @@ def is_ignored_lowlevel_message(message):
return True return True
elif 'Unable to locate theme engine in module_path:' in message: elif 'Unable to locate theme engine in module_path:' in message:
return True return True
elif message == 'getrlimit(RLIMIT_NOFILE) failed':
return True
return False return False