blob: 8fe6d476f7e7cdc2e62f9bf2327972190045a567 (
plain)
1
2
3
4
5
6
7
8
9
10
|
test_warnings
('ignore', False, 'FutureWarning', False, 0)
('ignore', True, 'OverflowWarning', True, 0)
('ignore', True, 'PendingDeprecationWarning', True, 0)
test_warnings.py:31: UserWarning: hello world
test_warnings.py:32: UserWarning: hello world
test_warnings.py:33: DeprecationWarning: hello world
test_warnings.py:35: UserWarning: hello world
Caught UserWarning: hello world
Caught AssertionError: invalid action: 'booh'
|