fix: resolve CI workflow test command to run promptforge tests
Some checks failed
CI / test (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / type-check (push) Has been cancelled

This commit is contained in:
2026-02-04 13:05:24 +00:00
parent 4c7ac24ecc
commit b074630e6b

View File

@@ -21,7 +21,7 @@ jobs:
pip install -e ".[dev]" pip install -e ".[dev]"
- name: Run tests - name: Run tests
run: python -m pytest tests/test_config.py tests/test_explainer.py tests/test_generation.py tests/test_history.py tests/test_integration.py tests/test_ollama_client.py tests/test_refactoring.py -v --tb=short run: python -m pytest tests/test_core.py tests/test_providers.py tests/test_testing.py -v --tb=short
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -49,6 +49,6 @@ jobs:
- name: Install type checker - name: Install type checker
run: pip install mypy>=1.0.0 run: pip install mypy>=1.0.0
- name: Run mypy type checker - name: Run mypy type checker
run: python -m mypy src/promptforge/ --ignore-missing-imports run: python -m mypy src/promptforge/ --ignore-missing-imports