From 4c89ed2526ba700f079df5b0fb0449f84f375fca Mon Sep 17 00:00:00 2001 From: zhanhuasheng Date: Mon, 22 Apr 2024 15:41:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TestCase/FAQ/test_01_article_info.py | 2 +- TestCase/FAQ/test_02_article_opreate.py | 2 +- TestCase/FAQ/test_03_article_page_setting.py | 2 +- TestCase/billing/test_01_buyPlan.py | 2 +- TestCase/customer/test_01_customer.py | 2 +- TestCase/inbox/test_01_livechat.py | 2 +- TestCase/inbox/test_02_ticketStatus.py | 2 +- TestCase/inbox/test_03_ticketOpreate.py | 2 +- TestCase/inbox/test_04_ticketInfo.py | 2 +- TestCase/inbox/test_05_team.py | 2 +- TestCase/inbox/test_06_channel.py | 2 +- TestCase/inbox/test_07_ticketDetail.py | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/TestCase/FAQ/test_01_article_info.py b/TestCase/FAQ/test_01_article_info.py index 188286e..95153c0 100644 --- a/TestCase/FAQ/test_01_article_info.py +++ b/TestCase/FAQ/test_01_article_info.py @@ -5,7 +5,7 @@ from TestData.FAQ.article_info_test_data import articleInfoTestData class TestFAQ: - yaml_path = r'FAQ\article_info.yaml' + yaml_path = r'FAQ/article_info.yaml' yaml_data = yaml_handler.yaml_handler.get_case(yaml_path) @pytest.mark.flaky(reruns=articleInfoTestData.rerun, reruns_delay=articleInfoTestData.rerun_delay) @pytest.mark.parametrize('case',yaml_data) diff --git a/TestCase/FAQ/test_02_article_opreate.py b/TestCase/FAQ/test_02_article_opreate.py index 71a7d2d..ceb195a 100644 --- a/TestCase/FAQ/test_02_article_opreate.py +++ b/TestCase/FAQ/test_02_article_opreate.py @@ -5,7 +5,7 @@ from TestData.FAQ.article_opreate_test_data import articleOperateTestData class TestArticleOpreate: - yaml_path = r'FAQ\article_opreate.yaml' + yaml_path = r'FAQ/article_opreate.yaml' yaml_data = yaml_handler.yaml_handler.get_case(yaml_path) @pytest.mark.flaky(reruns=articleOperateTestData.rerun, reruns_delay=articleOperateTestData.rerun_delay) @pytest.mark.parametrize('case',yaml_data) diff --git a/TestCase/FAQ/test_03_article_page_setting.py b/TestCase/FAQ/test_03_article_page_setting.py index d0ed64a..a4948b6 100644 --- a/TestCase/FAQ/test_03_article_page_setting.py +++ b/TestCase/FAQ/test_03_article_page_setting.py @@ -5,7 +5,7 @@ from TestData.FAQ.article_page_setting_test_data import articlePageSettingTestDa class TestArticleOpreate: - yaml_path = r'FAQ\article_page_setting.yaml' + yaml_path = r'FAQ/article_page_setting.yaml' yaml_data = yaml_handler.yaml_handler.get_case(yaml_path) @pytest.mark.flaky(reruns=articlePageSettingTestData.rerun, reruns_delay=articlePageSettingTestData.rerun_delay) @pytest.mark.parametrize('case',yaml_data) diff --git a/TestCase/billing/test_01_buyPlan.py b/TestCase/billing/test_01_buyPlan.py index f5ca44a..ac2ecd9 100644 --- a/TestCase/billing/test_01_buyPlan.py +++ b/TestCase/billing/test_01_buyPlan.py @@ -5,7 +5,7 @@ from TestData.billing.buyPlan_test_data import buyPlanData class TestBuyPlan: - yaml_path = r'billing\buyPlan.yaml' + yaml_path = r'billing/buyPlan.yaml' yaml_data = yaml_handler.yaml_handler.get_case(yaml_path) @pytest.mark.flaky(reruns=buyPlanData.rerun, reruns_delay=buyPlanData.rerun_delay) @pytest.mark.parametrize('case',yaml_data) diff --git a/TestCase/customer/test_01_customer.py b/TestCase/customer/test_01_customer.py index ba46b17..0c65666 100644 --- a/TestCase/customer/test_01_customer.py +++ b/TestCase/customer/test_01_customer.py @@ -5,7 +5,7 @@ from TestData.customer.customer_test_data import customerData class TestCustomer: - yaml_path = r'customer\customer.yaml' + yaml_path = r'customer/customer.yaml' yaml_data = yaml_handler.yaml_handler.get_case(yaml_path) @pytest.mark.flaky(reruns=customerData.rerun, reruns_delay=customerData.rerun_delay) @pytest.mark.parametrize('case',yaml_data) diff --git a/TestCase/inbox/test_01_livechat.py b/TestCase/inbox/test_01_livechat.py index eff3386..59a4167 100644 --- a/TestCase/inbox/test_01_livechat.py +++ b/TestCase/inbox/test_01_livechat.py @@ -5,7 +5,7 @@ from TestData.inbox.livechat_test_data import livechatData class TestLivechat: - yaml_path = r'inbox\livechat.yaml' + yaml_path = r'inbox/livechat.yaml' yaml_data = yaml_handler.yaml_handler.get_case(yaml_path) @pytest.mark.flaky(reruns=livechatData.rerun, reruns_delay=livechatData.rerun_delay) @pytest.mark.parametrize('case',yaml_data) diff --git a/TestCase/inbox/test_02_ticketStatus.py b/TestCase/inbox/test_02_ticketStatus.py index b04e22d..f04b46a 100644 --- a/TestCase/inbox/test_02_ticketStatus.py +++ b/TestCase/inbox/test_02_ticketStatus.py @@ -5,7 +5,7 @@ from TestData.inbox.ticketStatus_test_data import ticketStatusData class TestTicketStatus: - yaml_path = r'inbox\ticketStatus.yaml' + yaml_path = r'inbox/ticketStatus.yaml' yaml_data = yaml_handler.yaml_handler.get_case(yaml_path) @pytest.mark.flaky(reruns=ticketStatusData.rerun, reruns_delay=ticketStatusData.rerun_delay) @pytest.mark.parametrize('case',yaml_data) diff --git a/TestCase/inbox/test_03_ticketOpreate.py b/TestCase/inbox/test_03_ticketOpreate.py index f3870a0..38c7c2a 100644 --- a/TestCase/inbox/test_03_ticketOpreate.py +++ b/TestCase/inbox/test_03_ticketOpreate.py @@ -9,7 +9,7 @@ from TestData.inbox.ticketStatus_test_data import ticketStatusData class TestTicketOpreate: - yaml_path = r'inbox\ticketOpreate.yaml' + yaml_path = r'inbox/ticketOpreate.yaml' yaml_data = yaml_handler.yaml_handler.get_case(yaml_path) @pytest.mark.flaky(reruns=ticketStatusData.rerun, reruns_delay=ticketStatusData.rerun_delay) @pytest.mark.parametrize('case',yaml_data) diff --git a/TestCase/inbox/test_04_ticketInfo.py b/TestCase/inbox/test_04_ticketInfo.py index d1226d0..d69327d 100644 --- a/TestCase/inbox/test_04_ticketInfo.py +++ b/TestCase/inbox/test_04_ticketInfo.py @@ -5,7 +5,7 @@ from TestData.inbox.ticketInfo_test_data import ticketInfoData class TestTicketInfo: - yaml_path = r'inbox\ticketInfo.yaml' + yaml_path = r'inbox/ticketInfo.yaml' yaml_data = yaml_handler.yaml_handler.get_case(yaml_path) @pytest.mark.flaky(reruns=ticketInfoData.rerun, reruns_delay=ticketInfoData.rerun_delay) @pytest.mark.parametrize('case',yaml_data) diff --git a/TestCase/inbox/test_05_team.py b/TestCase/inbox/test_05_team.py index 94a2e7a..f75d69c 100644 --- a/TestCase/inbox/test_05_team.py +++ b/TestCase/inbox/test_05_team.py @@ -5,7 +5,7 @@ from TestData.inbox.team_test_data import teamData class TestTeam: - yaml_path = r'inbox\team.yaml' + yaml_path = r'inbox/team.yaml' yaml_data = yaml_handler.yaml_handler.get_case(yaml_path) @pytest.mark.flaky(reruns=teamData.rerun, reruns_delay=teamData.rerun_delay) @pytest.mark.parametrize('case',yaml_data) diff --git a/TestCase/inbox/test_06_channel.py b/TestCase/inbox/test_06_channel.py index 4ccd24e..0f7804e 100644 --- a/TestCase/inbox/test_06_channel.py +++ b/TestCase/inbox/test_06_channel.py @@ -5,7 +5,7 @@ from TestData.inbox.channel_test_data import channelData class TestChannel: - yaml_path = r'inbox\channel.yaml' + yaml_path = r'inbox/channel.yaml' yaml_data = yaml_handler.yaml_handler.get_case(yaml_path) @pytest.mark.flaky(reruns=channelData.rerun, reruns_delay=channelData.rerun_delay) @pytest.mark.parametrize('case',yaml_data) diff --git a/TestCase/inbox/test_07_ticketDetail.py b/TestCase/inbox/test_07_ticketDetail.py index 68a3de0..862127f 100644 --- a/TestCase/inbox/test_07_ticketDetail.py +++ b/TestCase/inbox/test_07_ticketDetail.py @@ -5,7 +5,7 @@ from TestData.inbox.ticketDetail_test_data import ticketDetailData class TestTiocketDetail: - yaml_path = r'inbox\ticketDetail.yaml' + yaml_path = r'inbox/ticketDetail.yaml' yaml_data = yaml_handler.yaml_handler.get_case(yaml_path) @pytest.mark.flaky(reruns=ticketDetailData.rerun, reruns_delay=ticketDetailData.rerun_delay) @pytest.mark.parametrize('case',yaml_data) -- GitLab