mirror of https://github.com/caronc/apprise
test coverage fix
parent
29d58d7093
commit
456b9ae644
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue