mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* runAllCells API * add comment * more run cells fixes * Add integration test * Add multiple cell SQL notebook test * Comment out python tests as they fail in the lab * remove unused imports * PR comments * Remove localize * Return true instead of promise.resolve(true)
23 lines
825 B
Bash
Executable File
23 lines
825 B
Bash
Executable File
# echo pass in username password hostname of big data cluster
|
|
export BDC_BACKEND_USERNAME=$1
|
|
export BDC_BACKEND_PWD=$2
|
|
export BDC_BACKEND_HOSTNAME=$3
|
|
export PYTHON_TEST_PATH=$4
|
|
|
|
export STANDALONE_SQL=%~5
|
|
export STANDALONE_SQL_USERNAME=%~6
|
|
export STANDALONE_SQL_PWD=%~7
|
|
|
|
export AZURE_SQL=%~8
|
|
export AZURE_SQL_USERNAME=%~9
|
|
export AZURE_SQL_PWD=%~10
|
|
|
|
export RUN_PYTHON3_TEST=%11
|
|
export RUN_PYSPARK_TEST=%12
|
|
|
|
echo No problem reading BDC cluster$BDC_BACKEND_USERNAME, password, $BDC_BACKEND_HOSTNAME and $PYTHON_TEST_PATH
|
|
echo No problem reading Standalone SQL instance: $STANDALONE_SQL, $STANDALONE_SQL_USERNAME and $STANDALONE_SQL_PWD
|
|
echo No problem reading AZURE SQL instance: $AZURE_SQL, $AZURE_SQL_USERNAME and $AZURE_SQL_PWD
|
|
@echo No problem reading run python and pyspark test: $RUN_PYTHON3_TEST and $RUN_PYSPARK_TEST
|
|
|
|
set |