
- Removed the old python2 entries - Replaced mock with unittest.mock - Unsuppressed most flake8 and pylint checks - Added the startup script to flake8 checking and fixed a python3 syntax issue in the error handling. - Regenerated an updated / modern pylint.rc - Updated the upper-constraints to be Debian and python3 Test Plan: Pass: Build / Install / Unlock Pass: trigger a patch alarm Story: 2010642 Task: 47815 Signed-off-by: Al Bailey <al.bailey@windriver.com> Change-Id: Id8c612a677253dfc53931719af7823572d1536ef
19 lines
334 B
Python
19 lines
334 B
Python
#!/usr/bin/python
|
|
|
|
"""
|
|
Copyright (c) 2014 Wind River Systems, Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
"""
|
|
|
|
import sys
|
|
|
|
try:
|
|
from patch_alarm import patch_alarm_manager
|
|
except BaseException as e:
|
|
print("Error importing patch_alarm_manager: %s" % str(e), file=sys.stderr)
|
|
sys.exit(1)
|
|
|
|
patch_alarm_manager.start_polling()
|