Skip to content

Commit b0b673b

Browse files
committed
Fix to temporary tests.
1 parent 9d894f6 commit b0b673b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

lib/iris/tests/integration/netcdf/test_chararrays.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ def show_result(filepath):
8080
print(
8181
"\n".join(iris.loading.LOAD_PROBLEMS._problems[0].stack_trace.format())
8282
)
83+
iris.loading.LOAD_PROBLEMS._problems = []
8384
print("-data-")
8485
print(repr(cube.data))
8586
if INCLUDE_COORD:
@@ -92,11 +93,16 @@ def show_result(filepath):
9293
print(repr(err))
9394

9495

95-
# tsts = (None, "ascii", "utf-8", "utf-32",)
96+
tsts = (
97+
None,
98+
"ascii",
99+
"utf-8",
100+
"utf-32",
101+
)
96102
# tsts = ("utf-8",)
97103
# tsts = ("utf-8", "utf-32",)
98104
# tsts = ("utf-32",)
99-
tsts = ("utf-8", "ascii", "utf-8")
105+
# tsts = ("utf-8", "ascii", "utf-8")
100106

101107

102108
@pytest.mark.parametrize("encoding", tsts)

0 commit comments

Comments
 (0)