yuqi1129 commented on code in PR #5160:
URL: https://github.com/apache/gravitino/pull/5160#discussion_r1808259086


##########
clients/client-python/tests/integration/integration_test_env.py:
##########
@@ -141,6 +147,12 @@ def restart_server(cls):
                 "project root directory."
             )
 
+        # remove data dir under gravitino_home
+        data_dir = os.path.join(gravitino_home, "data")
+        if os.path.exists(data_dir):
+            logger.info("Remove Gravitino data directory: %s", data_dir)
+            subprocess.run(["rm", "-rf", data_dir], check=False)

Review Comment:
   done



##########
clients/client-python/tests/integration/integration_test_env.py:
##########
@@ -80,6 +80,12 @@ def setUpClass(cls):
             )
             sys.exit(0)
 
+        # remove data dir under gravitino_home
+        data_dir = os.path.join(cls.gravitino_home, "data")
+        if os.path.exists(data_dir):
+            logger.info("Remove Gravitino data directory: %s", data_dir)
+            subprocess.run(["rm", "-rf", data_dir], check=False)

Review Comment:
   done



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to