Skip to content

Commit 8bb75c5

Browse files
committed
fix(test): exclude .authors.yml file from mkdocs config fixtures file
1 parent 0e90d91 commit 8bb75c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class TestConfig(BaseTest):
4141
@classmethod
4242
def setUpClass(cls):
4343
"""Executed when module is loaded before any test."""
44-
cls.config_files = sorted(Path("tests/fixtures/").glob("**/*.yml"))
44+
cls.config_files = sorted(Path("tests/fixtures/").glob("**/mkdocs_*.yml"))
4545
cls.feed_image = "https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg.png"
4646

4747
def setUp(self):

0 commit comments

Comments
 (0)