Skip to content

Commit

Permalink
[dhcp_relay] Remove skip condition for dhcp_server enabling
Browse files Browse the repository at this point in the history
  • Loading branch information
yaqiangz committed Jan 21, 2025
1 parent 976fc8c commit 6d2d39f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/dhcp_relay/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ def pytest_addoption(parser):
def check_dhcp_feature_status(duthost):
feature_status_output = duthost.show_and_parse("show feature status")
for feature in feature_status_output:
if feature["feature"] == "dhcp_server" and feature["state"] == "enabled":
pytest.skip("DHCPv4 relay is not supported when dhcp_server is enabled")
if feature["feature"] == "dhcp_relay" and feature["state"] != "enabled":
pytest.skip("dhcp_relay is not enabled")

Expand Down

0 comments on commit 6d2d39f

Please sign in to comment.