Fine-tune pylint and debugger test scripts (#3012)

- Added pylint and python-serial to apt-get-install-deps.sh.
- Make Jerry debugger import python serial module only if needed.
- Check-pylint.sh warns if pylint isn't installed.

JerryScript-DCO-1.0-Signed-off-by: Csaba Osztrogonác oszi@inf.u-szeged.hu
This commit is contained in:
Csaba Osztrogonác
2019-08-13 14:23:45 +02:00
committed by Robert Fancsik
parent ff2e75ed2e
commit 54a5a650aa
3 changed files with 12 additions and 2 deletions
+1 -1
View File
@@ -27,7 +27,6 @@ import jerry_client_main
from jerry_client_websocket import WebSocket
from jerry_client_rawpacket import RawPacket
from jerry_client_tcp import Socket
from jerry_client_serial import Serial
def write(string):
print(string, end='')
@@ -268,6 +267,7 @@ def main():
protocol = Socket(address)
elif args.protocol == "serial":
from jerry_client_serial import Serial
protocol = Serial(args.serial_config)
else:
print("Unsupported transmission protocol")