Disabling code coverage on this one-line functions.

This commit is contained in:
Dan 2017-10-31 22:01:18 -07:00
parent 27a6745743
commit f017ed648f
1 changed files with 2 additions and 2 deletions

View File

@ -2,14 +2,14 @@ import os
import signal
def _handle_signal(signal_number, frame):
def _handle_signal(signal_number, frame): # pragma: no cover
'''
Send the signal to all processes in borgmatic's process group, which includes child process.
'''
os.killpg(os.getpgrp(), signal_number)
def configure_signals():
def configure_signals(): # pragma: no cover
'''
Configure borgmatic's signal handlers to pass relevant signals through to any child processes
like Borg.