Skip to content

Commit bfc2e59

Browse files
committed
Change rdma fixtures scope
1 parent 76a0ea1 commit bfc2e59

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/integration/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ def create_vpc(test_linode_client):
484484
vpc.delete()
485485

486486

487-
@pytest.fixture(scope="session")
487+
@pytest.fixture
488488
def create_vpc_with_rdma_type(test_linode_client):
489489
client = test_linode_client
490490
label = get_test_label(length=10)
@@ -540,12 +540,12 @@ def create_vpc_with_subnet_and_linode(
540540
instance.delete()
541541

542542

543-
@pytest.fixture(scope="session")
543+
@pytest.fixture
544544
def create_vpc_with_subnet_and_rdma_type(create_vpc_with_rdma_type):
545545
vpc_rdma = create_vpc_with_rdma_type
546546
label = get_test_label(length=10)
547547

548-
subnet_rdma = create_vpc_with_rdma_type.subnet_create(
548+
subnet_rdma = vpc_rdma.subnet_create(
549549
label=label,
550550
ipv4="10.0.0.0/24",
551551
)

0 commit comments

Comments
 (0)