Skip to content
Snippets Groups Projects
Commit ae298a95 authored by Robert Latta's avatar Robert Latta
Browse files

Excluded methods from coverage checks that just execute SQL and return result

parent f84930d4
No related branches found
No related tags found
No related merge requests found
......@@ -244,14 +244,14 @@ def get_circuits(db):
return r
def get_circuit_hierarchy(db):
def get_circuit_hierarchy(db): # pragma: no cover
with cursor(db) as crs:
crs.execute(circuit_hierarchy_query)
r = _convert_to_dict(crs)
return r
def get_equipment_location_data(db):
def get_equipment_location_data(db): # pragma: no cover
with cursor(db) as crs:
crs.execute(equipment_location_query)
r = _convert_to_dict(crs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment