update Jenkinksfile
This commit is contained in:
parent
a9593a4472
commit
5ba5336756
|
@ -27,6 +27,7 @@ pipeline {
|
||||||
cd debug
|
cd debug
|
||||||
cmake .. > /dev/null
|
cmake .. > /dev/null
|
||||||
make > /dev/null
|
make > /dev/null
|
||||||
|
make install > /dev/null
|
||||||
cd ${WKC}/tests
|
cd ${WKC}/tests
|
||||||
#./test-all.sh smoke
|
#./test-all.sh smoke
|
||||||
./test-all.sh pytest
|
./test-all.sh pytest
|
||||||
|
|
|
@ -33,7 +33,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute("create table test_cars(ts timestamp, c nchar(2)) tags(t1 nchar(20))")
|
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.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)
|
tdSql.checkRows(1)
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
|
|
Loading…
Reference in New Issue