Files
azuredatastudio/scripts/sql-test-integration-unstable.sh
Amir Omidi f475c04ce3 Fix mocha issues (#7588)
* mocha invert boolean

* Run integration test setup either way
2019-10-08 22:14:06 -07:00

19 lines
416 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@|integration test setup)"
export ADS_TEST_INVERT_GREP=0
echo Running UNSTABLE ADS Extension Integration tests
./scripts/sql-test-integration.sh