Skip to content

Commit

Permalink
fix(anta.tests): Skip VerifyHardwareFlowTrackerStatus for cEOSLab and…
Browse files Browse the repository at this point in the history
… vEOS-lab (#873)
  • Loading branch information
carl-baillargeon authored Oct 10, 2024
1 parent 0635a3f commit 86e8602
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions anta/tests/flow_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

from pydantic import BaseModel

from anta.decorators import skip_on_platforms
from anta.models import AntaCommand, AntaTemplate, AntaTest
from anta.tools import get_failed_logs

Expand Down Expand Up @@ -151,6 +152,7 @@ def render(self, template: AntaTemplate) -> list[AntaCommand]:
"""Render the template for each hardware tracker."""
return [template.render(name=tracker.name) for tracker in self.inputs.trackers]

@skip_on_platforms(["cEOSLab", "vEOS-lab"])
@AntaTest.anta_test
def test(self) -> None:
"""Main test function for VerifyHardwareFlowTrackerStatus."""
Expand Down

0 comments on commit 86e8602

Please sign in to comment.