fixtureのスコープについてマスターしよう! # .gitignore # 仮想環境 venv/ env/ ENV/ # pytest .pytest_cache/ __pycache__/ *.pyc # カバレッジ .coverage htmlcov/ fixtureはテストの準備と後片付けを行う仕組みです。 # tests/conftest.py """全テストで共有されるfixture ...