We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5af0ac commit 486c8f5Copy full SHA for 486c8f5
tests/geophires_x_tests/test_outputs.py
@@ -31,7 +31,9 @@ def test_html_output_file(self):
31
# TODO expand test to assert more about output HTML
32
except RuntimeError as e:
33
# https://github.com/NREL/GEOPHIRES-X/issues/365
34
- has_expected_error_msg = 'cannot unpack non-iterable NoneType object' in str(e)
+ has_expected_error_msg = 'cannot unpack non-iterable NoneType object' in str(
35
+ e
36
+ ) or "Can't find a usable tk.tcl" in str(e)
37
if has_expected_error_msg and os.name == 'nt' and 'TOXPYTHON' in os.environ:
38
_log.warning(
39
f'Ignoring error while testing HTML output file '
0 commit comments