Arthur-Wu commit

This commit is contained in:
ieemoo
2024-11-11 17:16:31 +08:00
parent 0550884b67
commit fd92879ff1
36 changed files with 1505 additions and 8 deletions

21
YiMao/conftest.py Normal file
View File

@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
import pytest
'''@Author:: Arthur Wu
@Date:: 2024/05/21
@Description:: This is the webservices library conftest file
'''
@pytest.fixture(scope='function', autouse=True)
def init_webservices():
"""@Author:: Arthur
@Date:: 2022/05/19
@Description::
:return:
"""
print("function setup")
yield
print("function teardwon")