mirror of
https://github.com/langgenius/dify.git
synced 2025-11-29 20:37:22 +00:00
10 lines
191 B
Bash
Executable File
10 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
|
cd "$SCRIPT_DIR/../.."
|
|
|
|
PYTEST_TIMEOUT="${PYTEST_TIMEOUT:-120}"
|
|
|
|
pytest --timeout "${PYTEST_TIMEOUT}" api/tests/artifact_tests/
|