We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 041d89b commit a9e34b2Copy full SHA for a9e34b2
test/test_query.py
@@ -62,7 +62,7 @@ def test_example_count_checking(self):
62
63
def _query_test_case(self, paths, query_function):
64
for path in paths:
65
- if any(_ in path.parts for _ in IGNORED_FOLDER_NAMES):
+ if any(_ in path.parts for _ in IGNORED_FOLDER_NAMES) or not path.exists():
66
continue
67
with self.subTest(path=path, query_function=query_function):
68
_LOG.debug('testing %s() on %s', query_function.__name__, path)
0 commit comments