Skip to content

Commit 3324cad

Browse files
committed
✅ 测试结束后清除缓存文件
1 parent 5a3d9f3 commit 3324cad

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/conftest.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import sys
22
from pathlib import Path
3+
from shutil import rmtree
34

45
import pytest
56
import nonebot
@@ -67,6 +68,11 @@ async def app(tmp_path: Path, request: pytest.FixtureRequest, mocker: MockerFixt
6768

6869
# 关闭渲染图片时打开的浏览器
6970
await shutdown_browser()
71+
# 清除缓存文件
72+
cache_dir = Path.cwd() / ".cache" / "hishel"
73+
if cache_dir.exists():
74+
rmtree(cache_dir)
75+
cache_dir.mkdir()
7076

7177

7278
@pytest.fixture()

0 commit comments

Comments
 (0)