Skip to content

Commit 49b6684

Browse files
committed
chore(tests): address pylint
- add python docstrings Signed-off-by: aerosouund <aerosound161@gmail.com>
1 parent 3d32e1c commit 49b6684

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tests/integration_tests/functional/test_vsock.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
import subprocess
1919
import time
2020
from pathlib import Path
21-
from socket import SOCK_SEQPACKET
22-
from socket import timeout as SocketTimeout
21+
from socket import SOCK_SEQPACKET, timeout as SocketTimeout
2322
from ssl import SOCK_STREAM
2423
from threading import Thread
2524

@@ -317,6 +316,7 @@ def test_vsock_transport_reset_g2h(uvm_plain_any, microvm_factory):
317316
def test_vsock_seqpacket_h2g(
318317
uvm_plain_6_1, bin_vsock_seqpacket_listener_path, test_fc_session_root_path
319318
):
319+
"""Test host-to-guest vsock seqpacket connections."""
320320
vm = uvm_plain_6_1
321321
vm.spawn()
322322
vm.basic_config()
@@ -352,6 +352,7 @@ def test_vsock_seqpacket_g2h(
352352
bin_vsock_path,
353353
test_fc_session_root_path,
354354
):
355+
"""Test guest-to-host vsock seqpacket connections."""
355356
vm = uvm_plain_6_1
356357
vm.spawn()
357358
vm.basic_config()

0 commit comments

Comments
 (0)