tantivy-py/tests/test_docs.py

13 lines
256 B
Python
Raw Normal View History

from pathlib import Path
import pytest
from mktestdocs import check_md_file
def test_hello():
assert True
@pytest.mark.parametrize("filepath", Path("docs").glob("**/*.md"), ids=str)
def test_docs(filepath):
check_md_file(filepath, memory=True)