Skip to content

Commit c17666b

Browse files
committed
build
1 parent c1fa45d commit c17666b

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

tableschema/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.20.2
1+
1.20.2

tests/types/test_date.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from __future__ import absolute_import
55
from __future__ import unicode_literals
66

7+
import warnings
78
import pytest
89
from datetime import date, datetime
910
from tableschema import types
@@ -44,7 +45,6 @@
4445
('fmt:%d/%m/%y', '', ERROR),
4546
])
4647
def test_cast_date(format, value, result):
47-
with pytest.warns(None) as recorded:
48+
with warnings.catch_warnings():
49+
warnings.simplefilter("error" if not format.startswith('fmt:') else "ignore")
4850
assert types.cast_date(format, value) == result
49-
if not format.startswith('fmt:'):
50-
assert recorded.list == []

tests/types/test_datetime.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from __future__ import absolute_import
55
from __future__ import unicode_literals
66

7+
import warnings
78
import pytest
89
from datetime import datetime
910
from tableschema import types
@@ -40,7 +41,6 @@
4041
('fmt:%d/%m/%y %H:%M', '', ERROR),
4142
])
4243
def test_cast_datetime(format, value, result):
43-
with pytest.warns(None) as recorded:
44+
with warnings.catch_warnings():
45+
warnings.simplefilter("error" if not format.startswith('fmt:') else "ignore")
4446
assert types.cast_datetime(format, value) == result
45-
if not format.startswith('fmt:'):
46-
assert recorded.list == []

tests/types/test_time.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from __future__ import absolute_import
55
from __future__ import unicode_literals
66

7+
import warnings
78
import pytest
89
from datetime import time
910
from tableschema import types
@@ -48,7 +49,6 @@
4849
('fmt:%H:%M', '', ERROR),
4950
])
5051
def test_cast_time(format, value, result):
51-
with pytest.warns(None) as recorded:
52+
with warnings.catch_warnings():
53+
warnings.simplefilter("error" if not format.startswith('fmt:') else "ignore")
5254
assert types.cast_time(format, value) == result
53-
if not format.startswith('fmt:'):
54-
assert recorded.list == []

0 commit comments

Comments
 (0)