fix: Correct CI workflow directory paths
Some checks failed
CI / test (push) Failing after 4m43s

This commit is contained in:
2026-02-05 23:04:09 +00:00
parent 9ea9f0bdf2
commit 10fc548326

View File

@@ -25,11 +25,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -r local-llm-prompt-manager/requirements.txt
python -m pip install pytest pytest-cov ruff
- name: Run tests
run: python -m pytest tests/ -v --tb=short
run: python -m pytest local-llm-prompt-manager/tests/ -v --tb=short
- name: Run linting
run: python -m ruff check src/
run: python -m ruff check local-llm-prompt-manager/src/