Add notebook integration tests (#4652)

* Add notebook integration tests
This commit is contained in:
Yurong He
2019-03-22 10:39:44 -07:00
committed by GitHub
parent 756f77063a
commit 71db7e10b6
5 changed files with 153 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
@echo off pass in username password hostname of big data cluster
@echo off pass in username password hostname of big data cluster, please use "" for BDC_BACKEND_HOSTNAME to include port.
@echo For example: setbackendvariables.cmd sa pwd "23.101.143.196,31433" C:\Users\yuronhe\azuredatastudio-python
set BDC_BACKEND_USERNAME=%~1
set BDC_BACKEND_PWD=%~2
set BDC_BACKEND_HOSTNAME=%~3
@echo No problem reading %BDC_BACKEND_HOSTNAME%, password and %BDC_BACKEND_HOSTNAME%
set PYTHON_TEST_PATH=%~4
@echo No problem reading %BDC_BACKEND_USERNAME%, password, %BDC_BACKEND_HOSTNAME% and %PYTHON_TEST_PATH%

View File

@@ -2,5 +2,6 @@
export BDC_BACKEND_USERNAME=$1
export BDC_BACKEND_PWD=$2
export BDC_BACKEND_HOSTNAME=$3
echo No problem reading $BDC_BACKEND_USERNAME, password and $BDC_BACKEND_HOSTNAME
export PYTHON_TEST_PATH=$4
echo No problem reading $BDC_BACKEND_USERNAME, password, $BDC_BACKEND_HOSTNAME and $PYTHON_TEST_PATH
set