From 1547a48e6f1a8af8dc618d5afe858084ebfd317f Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 14 Oct 2021 09:05:07 +0200 Subject: tests: Adjust for PyYAML 6.0 --- tests/unit/utils/test_utils.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/unit/utils/test_utils.py b/tests/unit/utils/test_utils.py index 57adc883c..330ef3b96 100644 --- a/tests/unit/utils/test_utils.py +++ b/tests/unit/utils/test_utils.py @@ -809,8 +809,11 @@ class TestYaml: assert utils.yaml_load("[1, 2]") == [1, 2] def test_load_float_bug(self): - with pytest.raises(yaml.YAMLError): + try: utils.yaml_load("._") + except yaml.YAMLError: + # Either no exception or YAMLError, not ValueError + pass def test_load_file(self, tmp_path): tmpfile = tmp_path / 'foo.yml' -- cgit v1.2.3-54-g00ecf