40
40
node_tests, others = split_suite_by_condition(standard_tests,
41
41
condition_isinstance(TestBTreeNodes))
42
42
applier = TestScenarioApplier()
44
44
applier.scenarios = [('python', {'parse_btree': py_module})]
45
45
if CompiledBtreeParserFeature.available():
46
46
# Is there a way to do this that gets missing feature failures rather
47
47
# than no indication to the user?
49
49
applier.scenarios.append(('C', {'parse_btree': c_module}))
50
50
adapt_tests(node_tests, applier, others)