Files
azuredatastudio/scripts/sql-test-integration-unstable.sh
Amir Omidi 6582debd73 Unstable tests (#7487)
Setup unstable tests
2019-10-02 22:01:17 -07:00

18 lines
331 B
Bash
Executable File

#!/bin/bash
set -e
if [[ "$OSTYPE" == "darwin"* ]]; then
realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; }
ROOT=$(dirname $(dirname $(realpath "$0")))
else
ROOT=$(dirname $(dirname $(readlink -f $0)))
fi
cd $ROOT
export ADS_TEST_GREP=@UNSTABLE@
echo Running unstable tests
./scripts/sql-test-integration.sh