mirror of
https://github.com/vale981/ray
synced 2025-03-09 12:56:46 -04:00
36 lines
908 B
Bash
Executable file
36 lines
908 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Show explicitly which commands are currently running.
|
|
set -x
|
|
|
|
ROOT_DIR=$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd)
|
|
RESULT_FILE=$ROOT_DIR/results-$(date '+%Y-%m-%d_%H-%M-%S').log
|
|
echo "Logging to" $RESULT_FILE
|
|
touch $RESULT_FILE
|
|
|
|
run_test(){
|
|
local test_name=$1
|
|
|
|
local CLUSTER="stress_testing_config.yaml"
|
|
echo "Try running $test_name."
|
|
{
|
|
ray up -y $CLUSTER --cluster-name "$test_name" &&
|
|
sleep 1 &&
|
|
ray submit $CLUSTER --cluster-name "$test_name" "$test_name.py"
|
|
} || echo "FAIL: $test_name" >> $RESULT_FILE
|
|
|
|
# Tear down cluster.
|
|
if [ "$DEBUG_MODE" = "" ]; then
|
|
ray down -y $CLUSTER --cluster-name "$test_name"
|
|
else
|
|
echo "Not tearing down cluster" $CLUSTER
|
|
fi
|
|
}
|
|
|
|
pushd "$ROOT_DIR"
|
|
run_test test_many_tasks_and_transfers
|
|
run_test test_dead_actors
|
|
popd
|
|
|
|
cat $RESULT_FILE
|
|
[ ! -s $RESULT_FILE ] || exit 1
|