mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-25 00:34:20 +03:00
issue5230 raise warnings as errors to remotely debug failing python35(win) setup
This commit is contained in:
parent
a7bdfe42e1
commit
88ca40a15d
|
@ -90,7 +90,7 @@ objects_to_test = (
|
|||
def write_obj_and_catch_warnings(obj):
|
||||
with make_tempdir() as d:
|
||||
with warnings.catch_warnings(record=True) as warnings_list:
|
||||
warnings.filterwarnings("always", category=ResourceWarning)
|
||||
warnings.filterwarnings("error", category=ResourceWarning)
|
||||
obj.to_disk(d)
|
||||
return warnings_list
|
||||
|
||||
|
@ -98,8 +98,6 @@ def write_obj_and_catch_warnings(obj):
|
|||
@pytest.mark.parametrize("obj", objects_to_test[0], ids=objects_to_test[1])
|
||||
def test_to_disk_resource_warning(obj):
|
||||
warnings_list = write_obj_and_catch_warnings(obj)
|
||||
for warning in warnings_list:
|
||||
print(warning.message)
|
||||
assert len(warnings_list) == 0
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user