Skip to content

Commit

Permalink
chore: remove utility function from coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
navinkarkera committed Oct 16, 2023
1 parent 783a911 commit 7dfa048
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openedx_events/tooling.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def load_all_signals():
_process_all_signals_modules(import_module)


def _reconnect_to_db_if_needed():
def _reconnect_to_db_if_needed(): # pragma: no cover
"""
Reconnects the db connection if needed.
Expand All @@ -310,7 +310,7 @@ def _reconnect_to_db_if_needed():
connection.connect()


def _clear_request_cache():
def _clear_request_cache(): # pragma: no cover
"""
Clear the RequestCache so that each event consumption starts fresh.
Expand All @@ -320,7 +320,7 @@ def _clear_request_cache():
RequestCache.clear_all_namespaces()


def prepare_for_new_work_cycle():
def prepare_for_new_work_cycle(): # pragma: no cover
"""
Ensure that the application state is appropriate for performing a new unit of work.
Expand Down

0 comments on commit 7dfa048

Please sign in to comment.