10 lines
209 B
Bash
10 lines
209 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -x
|
||
|
|
|
||
|
|
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
||
|
|
cd "$SCRIPT_DIR/../.."
|
||
|
|
|
||
|
|
PYTEST_TIMEOUT="${PYTEST_TIMEOUT:-120}"
|
||
|
|
|
||
|
|
pytest --timeout "${PYTEST_TIMEOUT}" api/tests/test_containers_integration_tests
|