add one slave node
This commit is contained in:
parent
9f4a8ba773
commit
cbf323e9cb
|
@ -79,14 +79,25 @@ pipeline {
|
|||
changeRequest()
|
||||
}
|
||||
parallel {
|
||||
stage('python') {
|
||||
agent{label 'pytest'}
|
||||
stage('python_1') {
|
||||
agent{label 'p1'}
|
||||
steps {
|
||||
|
||||
pre_test()
|
||||
sh '''
|
||||
cd ${WKC}/tests
|
||||
./test-all.sh pytestfq
|
||||
./test-all.sh p1
|
||||
date'''
|
||||
}
|
||||
}
|
||||
stage('python_2') {
|
||||
agent{label 'p2'}
|
||||
steps {
|
||||
|
||||
pre_test()
|
||||
sh '''
|
||||
cd ${WKC}/tests
|
||||
./test-all.sh p2
|
||||
date'''
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,7 +19,8 @@ python3 ./test.py -f insert/randomNullCommit.py
|
|||
python3 insert/retentionpolicy.py
|
||||
python3 ./test.py -f insert/alterTableAndInsert.py
|
||||
python3 ./test.py -f insert/insertIntoTwoTables.py
|
||||
python3 ./test.py -f query/isNullTest.py
|
||||
#python3 ./test.py -f insert/before_1970.py
|
||||
python3 bug2265.py
|
||||
|
||||
#table
|
||||
python3 ./test.py -f table/alter_wal0.py
|
||||
|
@ -33,7 +34,7 @@ python3 ./test.py -f table/alter_column.py
|
|||
python3 ./test.py -f table/boundary.py
|
||||
python3 ./test.py -f table/create.py
|
||||
python3 ./test.py -f table/del_stable.py
|
||||
python3 ./test.py -f table/queryWithTaosdKilled.py
|
||||
|
||||
|
||||
# tag
|
||||
python3 ./test.py -f tag_lite/filter.py
|
||||
|
@ -164,9 +165,15 @@ python3 ./test.py -f query/bug1874.py
|
|||
python3 ./test.py -f query/bug1875.py
|
||||
python3 ./test.py -f query/bug1876.py
|
||||
python3 ./test.py -f query/bug2218.py
|
||||
python3 ./test.py -f query/bug2117.py
|
||||
python3 ./test.py -f query/bug2118.py
|
||||
python3 ./test.py -f query/bug2143.py
|
||||
python3 ./test.py -f query/sliding.py
|
||||
python3 ./test.py -f query/unionAllTest.py
|
||||
python3 ./test.py -f query/bug2281.py
|
||||
python3 ./test.py -f query/bug2119.py
|
||||
python3 bug2265.py
|
||||
python3 ./test.py -f query/isNullTest.py
|
||||
python3 ./test.py -f query/queryWithTaosdKilled.py
|
||||
python3 ./test.py -f query/floatCompare.py
|
||||
|
||||
#stream
|
||||
|
@ -184,6 +191,7 @@ python3 ./test.py -f alter/alter_table_crash.py
|
|||
python3 ./test.py -f client/client.py
|
||||
python3 ./test.py -f client/version.py
|
||||
python3 ./test.py -f client/alterDatabase.py
|
||||
python3 ./test.py -f client/noConnectionErrorTest.py
|
||||
|
||||
# Misc
|
||||
python3 testCompress.py
|
||||
|
@ -207,7 +215,7 @@ python3 ./test.py -f functions/function_spread.py -r 1
|
|||
python3 ./test.py -f functions/function_stddev.py -r 1
|
||||
python3 ./test.py -f functions/function_sum.py -r 1
|
||||
python3 ./test.py -f functions/function_top.py -r 1
|
||||
#python3 ./test.py -f functions/function_twa.py -r 1
|
||||
python3 ./test.py -f functions/function_twa.py -r 1
|
||||
python3 ./test.py -f functions/function_twa_test2.py
|
||||
python3 queryCount.py
|
||||
python3 ./test.py -f query/queryGroupbyWithInterval.py
|
||||
|
@ -219,10 +227,10 @@ python3 test.py -f query/queryFillTest.py
|
|||
python3 test.py -f tools/taosdemoTest.py
|
||||
python3 test.py -f tools/taosdumpTest.py
|
||||
python3 test.py -f tools/lowaTest.py
|
||||
python3 test.py -f tools/taosdemoTest2.py
|
||||
|
||||
# subscribe
|
||||
python3 test.py -f subscribe/singlemeter.py
|
||||
#python3 test.py -f subscribe/stability.py
|
||||
python3 test.py -f subscribe/supertable.py
|
||||
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@ python3 ./test.py -f update/merge_commit_data2.py
|
|||
python3 ./test.py -f update/merge_commit_data2_update0.py
|
||||
python3 ./test.py -f update/merge_commit_last-0.py
|
||||
python3 ./test.py -f update/merge_commit_last.py
|
||||
python3 ./test.py -f update/bug_td2279.py
|
||||
|
||||
# wal
|
||||
python3 ./test.py -f wal/addOldWalTest.py
|
|
@ -202,10 +202,10 @@ if [ "$2" != "sim" ]; then
|
|||
runPyCaseOneByOnefq fulltest.sh
|
||||
elif [ "$1" == "p1" ]; then
|
||||
echo "### run Python_1 test ###"
|
||||
runPyCaseOneByOne pytest_1.sh
|
||||
runPyCaseOneByOnefq pytest_1.sh
|
||||
elif [ "$1" == "p2" ]; then
|
||||
echo "### run Python_2 test ###"
|
||||
runPyCaseOneByOne pytest_2.sh
|
||||
runPyCaseOneByOnefq pytest_2.sh
|
||||
elif [ "$1" == "b2" ] || [ "$1" == "b3" ]; then
|
||||
exit $(($totalFailed + $totalPyFailed))
|
||||
elif [ "$1" == "smoke" ] || [ -z "$1" ]; then
|
||||
|
|
Loading…
Reference in New Issue