2024-04-18 05:43:15 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
set -x
|
|
|
|
|
|
2025-05-06 09:02:40 +00:00
|
|
|
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
|
|
|
|
cd "$SCRIPT_DIR/../.."
|
|
|
|
|
|
2025-10-16 14:15:03 +00:00
|
|
|
PYTEST_TIMEOUT="${PYTEST_TIMEOUT:-120}"
|
|
|
|
|
|
|
|
|
|
pytest --timeout "${PYTEST_TIMEOUT}" api/tests/integration_tests/workflow
|