diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 41e4cc3..2b4c76c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: pip install -e ".[dev]" - 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: runs-on: ubuntu-latest @@ -49,6 +49,6 @@ jobs: - name: Install type checker run: pip install mypy>=1.0.0 - + - name: Run mypy type checker run: python -m mypy src/promptforge/ --ignore-missing-imports