update Jenkinksfile

This commit is contained in:
Ping Xiao 2020-11-05 18:38:23 +08:00
parent a9593a4472
commit 5ba5336756
2 changed files with 2 additions and 1 deletions

1
Jenkinsfile vendored
View File

@ -27,6 +27,7 @@ pipeline {
cd debug
cmake .. > /dev/null
make > /dev/null
make install > /dev/null
cd ${WKC}/tests
#./test-all.sh smoke
./test-all.sh pytest

View File

@ -33,7 +33,7 @@ class TDTestCase:
tdSql.execute("create table test_cars(ts timestamp, c nchar(2)) tags(t1 nchar(20))")
tdSql.execute("insert into car1 using test_cars tags('150 90 30 04 00 002') values(now, 'bb');")
tdSql.query("select count(*) from test_cars where t1 like '%50 90 30 04 00 00%'")
tdSql.query("select * from test_cars where t1 like '%50 90 30 04 00 00%'")
tdSql.checkRows(1)
def stop(self):