diff --git a/test/conftest.py b/test/conftest.py index 8c8d246c5bd97c16ef7f8db09752c2dca0ffd804..3211217acb46436f6287aa5e48fe6393493c3283 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -138,6 +138,11 @@ class FakerProvider(BaseProvider): def vlan_id(self) -> int: return self.generator.random_int(min=1, max=4095) + def bandwidth(self) -> str: + bandwidth_value = self.generator.random_int(1, 1000) + unit = self.generator.random_choices(elements=("K", "M", "G", "T"))[0] + return f"{bandwidth_value}{unit}" + @pytest.fixture(scope="session") def faker() -> Faker: diff --git a/test/workflows/l2_circuit/__init__.py b/test/workflows/l2_circuit/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391