diff options
Diffstat (limited to 'tests/test_domain_cpp.py')
-rw-r--r-- | tests/test_domain_cpp.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index b1796cdff..7d9c89b7a 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -796,12 +796,15 @@ def filter_warnings(warning, file): return res -@pytest.mark.sphinx(testroot='domain-cpp') +@pytest.mark.sphinx(testroot='domain-cpp', confoverrides={'nitpicky': True}) def test_build_domain_cpp_multi_decl_lookup(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "lookup-key-overload") assert len(ws) == 0 + ws = filter_warnings(warning, "multi-decl-lookup") + assert len(ws) == 0 + @pytest.mark.sphinx(testroot='domain-cpp') def test_build_domain_cpp_misuse_of_roles(app, status, warning): |