summaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-06-15 12:42:45 -0700
committerDylan Baker <dylan@pnwbakers.com>2021-06-15 14:15:13 -0700
commit753573610873e925f820af8a21e3f900390284b8 (patch)
tree6e1a80d6330782559f5caed9bdb78ec0f012dd23 /run_unittests.py
parentbfaa529a7a35039d4a782615a428935df5336b94 (diff)
downloadmeson-753573610873e925f820af8a21e3f900390284b8.tar.gz
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-xrun_unittests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index d17c24338..92557b257 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):