chore: Create necessary directories for data and temp in coverage test workflow

This commit is contained in:
Soulter
2024-08-17 05:29:52 -04:00
parent d3a5205bde
commit 743046d48f

View File

@@ -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