aboutsummaryrefslogtreecommitdiffstats
path: root/test/vpp_vhost_interface.py
diff options
context:
space:
mode:
authorKlement Sekera <klement.sekera@gmail.com>2022-04-26 19:02:15 +0200
committerOle Tr�an <otroan@employees.org>2022-05-10 18:52:08 +0000
commitd9b0c6fbf7aa5bd9af84264105b39c82028a4a29 (patch)
tree4f786cfd8ebc2443cb11e11b74c8657204068898 /test/vpp_vhost_interface.py
parentf90348bcb4afd0af2611cefc43b17ef3042b511c (diff)
tests: replace pycodestyle with black
Drop pycodestyle for code style checking in favor of black. Black is much faster, stable PEP8 compliant code style checker offering also automatic formatting. It aims to be very stable and produce smallest diffs. It's used by many small and big projects. Running checkstyle with black takes a few seconds with a terse output. Thus, test-checkstyle-diff is no longer necessary. Expand scope of checkstyle to all python files in the repo, replacing test-checkstyle with checkstyle-python. Also, fixstyle-python is now available for automatic style formatting. Note: python virtualenv has been consolidated in test/Makefile, test/requirements*.txt which will eventually be moved to a central location. This is required to simply the automated generation of docker executor images in the CI. Type: improvement Change-Id: I022a326603485f58585e879ac0f697fceefbc9c8 Signed-off-by: Klement Sekera <klement.sekera@gmail.com> Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test/vpp_vhost_interface.py')
-rw-r--r--test/vpp_vhost_interface.py49
1 files changed, 31 insertions, 18 deletions
diff --git a/test/vpp_vhost_interface.py b/test/vpp_vhost_interface.py
index 8fa2d7172f1..a20504ba1ce 100644
--- a/test/vpp_vhost_interface.py
+++ b/test/vpp_vhost_interface.py
@@ -4,13 +4,24 @@ from vpp_interface import VppInterface
class VppVhostInterface(VppInterface):
"""VPP vhost interface."""
- def __init__(self, test, sock_filename, is_server=0, renumber=0,
- disable_mrg_rxbuf=0, disable_indirect_desc=0, enable_gso=0,
- enable_packed_ring=0, enable_event_idx=0,
- custom_dev_instance=0xFFFFFFFF, use_custom_mac=0,
- mac_address='', tag=''):
+ def __init__(
+ self,
+ test,
+ sock_filename,
+ is_server=0,
+ renumber=0,
+ disable_mrg_rxbuf=0,
+ disable_indirect_desc=0,
+ enable_gso=0,
+ enable_packed_ring=0,
+ enable_event_idx=0,
+ custom_dev_instance=0xFFFFFFFF,
+ use_custom_mac=0,
+ mac_address="",
+ tag="",
+ ):
- """ Create VPP Vhost interface """
+ """Create VPP Vhost interface"""
super(VppVhostInterface, self).__init__(test)
self.is_server = is_server
self.sock_filename = sock_filename
@@ -26,18 +37,20 @@ class VppVhostInterface(VppInterface):
self.tag = tag
def add_vpp_config(self):
- r = self.test.vapi.create_vhost_user_if_v2(self.is_server,
- self.sock_filename,
- self.renumber,
- self.disable_mrg_rxbuf,
- self.disable_indirect_desc,
- self.enable_gso,
- self.enable_packed_ring,
- self.enable_event_idx,
- self.custom_dev_instance,
- self.use_custom_mac,
- self.mac_address,
- self.tag)
+ r = self.test.vapi.create_vhost_user_if_v2(
+ self.is_server,
+ self.sock_filename,
+ self.renumber,
+ self.disable_mrg_rxbuf,
+ self.disable_indirect_desc,
+ self.enable_gso,
+ self.enable_packed_ring,
+ self.enable_event_idx,
+ self.custom_dev_instance,
+ self.use_custom_mac,
+ self.mac_address,
+ self.tag,
+ )
self.set_sw_if_index(r.sw_if_index)
def remove_vpp_config(self):