Refactor integration test targets in Makefile and update workflow

- Renamed integration test targets in the Makefile for clarity: `integration-tests` to `integration-tests-all` and added `integration-tests-basic`.
- Updated GitHub Actions workflow to run the new `integration-tests-basic` target.
- Cleaned up the `WithAuth` test class by removing unused imports and simplifying method signatures.
This commit is contained in:
amithkoujalgi
2025-09-29 10:36:13 +05:30
parent f114181fe2
commit 501c35fa44
3 changed files with 9 additions and 8 deletions

View File

@@ -48,7 +48,7 @@ jobs:
run: mvn clean test -Punit-tests
- name: Run integration tests
run: mvn clean verify -Pintegration-tests
run: mvn clean verify -Pintegration-tests-basic
env:
USE_EXTERNAL_OLLAMA_HOST: "true"
OLLAMA_HOST: "http://localhost:11434"