22 lines
378 B
Python
22 lines
378 B
Python
# -*- 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")
|
|
|
|
|