#!/bin/bash set -xe src_dir=${ONEFLOW_SRC_DIR:-"$PWD"} test_tmp_dir=${ONEFLOW_TEST_TMP_DIR:-"./test_tmp_dir"} rm -rf $test_tmp_dir mkdir -p $test_tmp_dir cp -r $src_dir/python/oneflow/compatible/single_client/test $test_tmp_dir cd $test_tmp_dir export ONEFLOW_TEST_DEVICE_NUM=1 python3 -m unittest discover test/serving --failfast --verbose