mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 02:42:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			760 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			760 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| set -x
 | |
| 
 | |
| SCRIPT_DIR="$(dirname "$(realpath "$0")")"
 | |
| cd "$SCRIPT_DIR/../.."
 | |
| 
 | |
| 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 \
 | |
|   api/tests/integration_tests/model_runtime/upstage \
 | |
|   api/tests/integration_tests/model_runtime/fireworks \
 | |
|   api/tests/integration_tests/model_runtime/nomic \
 | |
|   api/tests/integration_tests/model_runtime/mixedbread \
 | |
|   api/tests/integration_tests/model_runtime/voyage
 | 
