私はPythonが初めてで、pytestに疑問があります
test_client.py
# Simple Example tests
import pytest
def test_one():
assert False == False
def test_two():
assert True == True
def cleanup():
# do some cleanup stuff
conftest.py
import pytest
import test_client
@pytest.fixture(scope="session", autouse=True)
def do_clean_up(request):
request.addfinalizer(test_client.cleanup)
conftest.pyで定義されたフィクスチャを test_client.py に移動して、conftest.pyを削除することは可能ですか?