diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-06-15 12:42:45 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-06-15 14:15:13 -0700 |
commit | 753573610873e925f820af8a21e3f900390284b8 (patch) | |
tree | 6e1a80d6330782559f5caed9bdb78ec0f012dd23 /run_unittests.py | |
parent | bfaa529a7a35039d4a782615a428935df5336b94 (diff) | |
download | meson-753573610873e925f820af8a21e3f900390284b8.zip meson-753573610873e925f820af8a21e3f900390284b8.tar.gz meson-753573610873e925f820af8a21e3f900390284b8.tar.bz2 |
docs: Use an include for the qt modules
Insteadf of qt4 referencing the Qt5 page, include the same content in
both.
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index d17c243..92557b2 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -1846,7 +1846,7 @@ class DataTests(unittest.TestCase): markdownfiles = [f.name for f in Path("docs/markdown").iterdir() if f.is_file() and f.suffix == '.md'] exceptions = ['_Sidebar.md'] for f in markdownfiles: - if f not in exceptions: + if f not in exceptions and not f.startswith('_include'): self.assertIn(f, toc) def test_vim_syntax_highlighting(self): |