Skip to content

Commit 087bfbd

Browse files
committed
Removing incorrectly commented cleanup code for integration tests
1 parent 27b6c0b commit 087bfbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/feature_store/test_dataset_complex.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,21 @@ class TestDatasetComplex(FeatureStoreTestCase):
2626
def feature_store(self) -> FeatureStore:
2727
feature_store = self.define_feature_store_resource().create()
2828
yield feature_store
29-
# self.clean_up_feature_store(feature_store)
29+
self.clean_up_feature_store(feature_store)
3030

3131
@pytest.fixture()
3232
def entity(self, feature_store: FeatureStore):
3333
entity = self.create_entity_resource(feature_store)
3434
yield entity
35-
# self.clean_up_entity(entity)
35+
self.clean_up_entity(entity)
3636

3737
@pytest.fixture()
3838
def feature_group(self, entity, feature_store) -> "FeatureGroup":
3939
feature_group = self.define_feature_group_resource(
4040
entity.oci_fs_entity.id, feature_store.oci_fs.id
4141
).create()
4242
yield feature_group
43-
# self.clean_up_feature_group(feature_group)
43+
self.clean_up_feature_group(feature_group)
4444

4545
def test_manual_dataset(
4646
self,

0 commit comments

Comments
 (0)