|
|
|
@@ -37,10 +37,12 @@ jobs: |
|
|
|
with: |
|
|
|
python-version: '3.10' |
|
|
|
cache: 'pip' |
|
|
|
cache-dependency-path: ./api/requirements.txt |
|
|
|
cache-dependency-path: | |
|
|
|
./api/requirements.txt |
|
|
|
./api/requirements-dev.txt |
|
|
|
|
|
|
|
- name: Install dependencies |
|
|
|
run: pip install -r ./api/requirements.txt |
|
|
|
run: pip install -r ./api/requirements.txt -r ./api/requirements-dev.txt |
|
|
|
|
|
|
|
- name: Run ModelRuntime |
|
|
|
run: pytest api/tests/integration_tests/model_runtime/anthropic api/tests/integration_tests/model_runtime/azure_openai api/tests/integration_tests/model_runtime/openai api/tests/integration_tests/model_runtime/chatglm api/tests/integration_tests/model_runtime/google api/tests/integration_tests/model_runtime/xinference api/tests/integration_tests/model_runtime/huggingface_hub/test_llm.py |