Files
wlan-testing/tests/setup_connectivity.py
shivamcandela 6b1917eab4 Sanity suite completed
Signed-off-by: shivamcandela <shivam.thakur@candelatech.com>
2021-04-15 00:08:24 +05:30

23 lines
557 B
Python

import pytest
@pytest.mark.sanity
@pytest.mark.bridge
@pytest.mark.nat
@pytest.mark.vlan
@pytest.mark.wifi5
@pytest.mark.wifi6
class TestConnection:
def test_cloud_connectivity(self, instantiate_cloudsdk):
assert instantiate_cloudsdk
def test_access_points_connectivity(self, instantiate_cloudsdk):
assert instantiate_cloudsdk
def test_lanforge_connectivity(self, setup_lanforge):
assert "instantiate_cloudsdk"
def test_perfecto_connectivity(self, setup_perfecto_devices):
assert "instantiate_cloudsdk"