From 8bbed24ba9cf8fa68f10abbe61e05569f077d5e9 Mon Sep 17 00:00:00 2001 From: ThreadDao Date: Tue, 12 Oct 2021 20:22:39 +0800 Subject: [PATCH] [skip ci] Add test delete file (#9748) Signed-off-by: ThreadDao --- tests/python_client/testcases/test_delete.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/python_client/testcases/test_delete.py diff --git a/tests/python_client/testcases/test_delete.py b/tests/python_client/testcases/test_delete.py new file mode 100644 index 000000000..7c62229fa --- /dev/null +++ b/tests/python_client/testcases/test_delete.py @@ -0,0 +1,13 @@ +import pytest + +from base.client_base import TestcaseBase + + +@pytest.mark.skip(reason="Waiting for development") +class TestDeleteParams(TestcaseBase): + pass + + +@pytest.mark.skip(reason="Waiting for development") +class TestDeleteOperation(TestcaseBase): + pass -- GitLab