From 79f12bb44a1246191e3ea4a8760c474c8085669d Mon Sep 17 00:00:00 2001 From: Steven Koo Date: Wed, 25 May 2022 14:24:57 -0500 Subject: ci: Fix mgmt_addr=None entry for X310 DPDK case X310 differs from X410 in that it doesn't require the mgmt_addr to function. This does a check to see if the field has been added, instead of assuming that it has a value. Signed-off-by: Steven Koo --- host/tests/pytests/test_streaming.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'host/tests/pytests/test_streaming.py') diff --git a/host/tests/pytests/test_streaming.py b/host/tests/pytests/test_streaming.py index aa608ab1e..d43660651 100644 --- a/host/tests/pytests/test_streaming.py +++ b/host/tests/pytests/test_streaming.py @@ -240,7 +240,13 @@ def test_streaming(pytestconfig, dut_type, use_dpdk, dual_SFP, rate, rx_rate, rx device_args += f"second_addr={pytestconfig.getoption('second_addr')}," if use_dpdk: - device_args += f"use_dpdk=1,mgmt_addr={pytestconfig.getoption('mgmt_addr')}," + device_args += f"use_dpdk=1," + try: + mgmt_addr = pytestconfig.getoption('mgmt_addr') + if mgmt_addr: + device_args += f"mgmt_addr={mgmt_addr}," + except Exception: + pass try: num_recv_frames = pytestconfig.getoption('num_recv_frames') -- cgit v1.2.3