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 3a32673 commit 1303a17Copy full SHA for 1303a17
test/test_query.py
@@ -21,8 +21,6 @@
21
22
_LOG = logging.getLogger(__name__)
23
24
-IGNORED_FOLDER_NAMES = ['opencv']
25
-
26
27
class Tests(unittest.TestCase):
28
@@ -44,8 +42,6 @@ def test_example_count_checking(self):
44
42
45
43
def _query_test_case(self, paths, query_function):
46
for path in paths:
47
- if any(_ in path.parts for _ in IGNORED_FOLDER_NAMES) or not path.exists():
48
- continue
49
with self.subTest(path=path, query_function=query_function):
50
_LOG.debug('testing %s() on %s', query_function.__name__, path)
51
try:
0 commit comments