test coverage fix

pull/1354/head
Chris Caron 2025-06-29 21:32:22 -04:00
parent 29d58d7093
commit 456b9ae644
1 changed files with 7 additions and 1 deletions

View File

@ -34,8 +34,14 @@ from apprise import Apprise
from apprise.plugins.smpp import NotifySMPP from apprise.plugins.smpp import NotifySMPP
from apprise import NotifyType from apprise import NotifyType
from helpers import AppriseURLTester from helpers import AppriseURLTester
try:
import smpplib import smpplib
except ImportError:
# No problem; there is no smpplib support
pass
logging.disable(logging.CRITICAL) logging.disable(logging.CRITICAL)
# Our Testing URLs # Our Testing URLs