MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / enabled_for_config

Method enabled_for_config

lib/sqlalchemy/testing/exclusions.py:84–89  ·  view source on GitHub ↗
(self, config)

Source from the content-addressed store, hash-verified

82 return self.enabled_for_config(config._current)
83
84 def enabled_for_config(self, config):
85 for predicate in self.skips.union(self.fails):
86 if predicate(config):
87 return False
88 else:
89 return True
90
91 def matching_warnings(self, config):
92 return [

Callers 6

enabledMethod · 0.95
_schema_columnFunction · 0.80
drop_all_schema_objectsFunction · 0.80
drop_viewsFunction · 0.80
drop_materialized_viewsFunction · 0.80

Calls 1

unionMethod · 0.45

Tested by

no test coverage detected