File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tests/integration/feature_store Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments