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 Dec 8, 2023
1 parent 921e62c commit 7f977ed
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 @@ -296,7 +296,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 @@ -311,7 +311,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 @@ -321,7 +321,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 7f977ed

Please sign in to comment.