From 743046d48f6042b132d879ecef2ba19aa5782f46 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Sat, 17 Aug 2024 05:29:52 -0400 Subject: [PATCH] chore: Create necessary directories for data and temp in coverage test workflow --- .github/workflows/coverage_test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/coverage_test.yml b/.github/workflows/coverage_test.yml index ab5e3c42a..a021daa7c 100644 --- a/.github/workflows/coverage_test.yml +++ b/.github/workflows/coverage_test.yml @@ -21,6 +21,9 @@ jobs: python -m pip install --upgrade pip pip install -r requirements.txt pip install pytest pytest-cov pytest-asyncio + mkdir data + mkdir data/config + mkdir temp - name: Run tests run: PYTHONPATH=./ pytest --cov=. tests/ -v