2024-01-02 23:42:00 +08:00
|
|
|
name: Run Pytest
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
env:
|
|
|
|
OPENAI_API_KEY: sk-IamNotARealKeyJustForMockTestKawaiiiiiiiiii
|
|
|
|
AZURE_OPENAI_API_BASE: https://difyai-openai.openai.azure.com
|
|
|
|
AZURE_OPENAI_API_KEY: xxxxb1707exxxxxxxxxxaaxxxxxf94
|
|
|
|
ANTHROPIC_API_KEY: sk-ant-api11-IamNotARealKeyJustForMockTestKawaiiiiiiiiii-NotBaka-ASkksz
|
|
|
|
CHATGLM_API_BASE: http://a.abc.com:11451
|
|
|
|
XINFERENCE_SERVER_URL: http://a.abc.com:11451
|
|
|
|
XINFERENCE_GENERATION_MODEL_UID: generate
|
|
|
|
XINFERENCE_CHAT_MODEL_UID: chat
|
|
|
|
XINFERENCE_EMBEDDINGS_MODEL_UID: embedding
|
|
|
|
XINFERENCE_RERANK_MODEL_UID: rerank
|
|
|
|
GOOGLE_API_KEY: abcdefghijklmnopqrstuvwxyz
|
|
|
|
HUGGINGFACE_API_KEY: hf-awuwuwuwuwuwuwuwuwuwuwuwuwuwuwuwuwu
|
|
|
|
HUGGINGFACE_TEXT_GEN_ENDPOINT_URL: a
|
|
|
|
HUGGINGFACE_TEXT2TEXT_GEN_ENDPOINT_URL: b
|
|
|
|
HUGGINGFACE_EMBEDDINGS_ENDPOINT_URL: c
|
|
|
|
MOCK_SWITCH: true
|
2024-04-08 18:51:46 +08:00
|
|
|
CODE_MAX_STRING_LENGTH: 80000
|
2024-01-02 23:42:00 +08:00
|
|
|
|
|
|
|
steps:
|
2024-01-09 18:15:25 +08:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
2024-01-02 23:42:00 +08:00
|
|
|
|
2024-01-09 18:15:25 +08:00
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
|
|
|
python-version: '3.10'
|
|
|
|
cache: 'pip'
|
2024-04-15 11:03:10 +08:00
|
|
|
cache-dependency-path: |
|
|
|
|
./api/requirements.txt
|
|
|
|
./api/requirements-dev.txt
|
2024-01-02 23:42:00 +08:00
|
|
|
|
2024-01-09 18:15:25 +08:00
|
|
|
- name: Install dependencies
|
2024-04-15 11:03:10 +08:00
|
|
|
run: pip install -r ./api/requirements.txt -r ./api/requirements-dev.txt
|
2024-01-02 23:42:00 +08:00
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
- name: Run ModelRuntime
|
2024-01-09 18:15:25 +08:00
|
|
|
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
|
2024-04-08 18:51:46 +08:00
|
|
|
|
|
|
|
- name: Run Tool
|
|
|
|
run: pytest api/tests/integration_tests/tools/test_all_provider.py
|
|
|
|
|
|
|
|
- name: Run Workflow
|
|
|
|
run: pytest api/tests/integration_tests/workflow
|