Files
openvino/docs/scripts/tests/test_docs.py
Ilya Churaev 0c9abf43a9 Updated copyright headers (#15124)
* Updated copyright headers

* Revert "Fixed linker warnings in docs snippets on Windows (#15119)"

This reverts commit 372699ec49.
2023-01-16 11:02:17 +04:00

15 lines
435 B
Python

# Copyright (C) 2018-2023 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
""" Test for Doxygen based documentation generation.
Refer to conftest.py on the test usage.
"""
def test_documentation_page(doxygen_errors):
""" Test documentation page has no errors generating
"""
if doxygen_errors:
assert False, '\n'.join(['documentation has issues:'] +
sorted(doxygen_errors))