ci: all jobs use python3 by default

This commit is contained in:
Chen Yu Dong
2020-11-11 11:31:17 +08:00
committed by bot
parent 2558830339
commit 454edcc0a8
17 changed files with 36 additions and 41 deletions

View File

@@ -36,13 +36,13 @@ def tcp_client(address, payload):
print('Could not open socket: ', msg)
sock.close()
raise
sock.sendall(payload)
sock.sendall(payload.encode())
data = sock.recv(1024)
if not data:
return
print('Reply : ' + data.decode())
sock.close()
return data
return data.decode()
@ttfw_idf.idf_example_test(env_tag="Example_WIFI")