From fcd61b28965551828a810f72ae3502c617da8b6e Mon Sep 17 00:00:00 2001 From: Ping Xiao Date: Fri, 11 Sep 2020 22:22:53 +0800 Subject: [PATCH 1/2] run full test --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6e49709c85..eb7742f2b4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -57,7 +57,7 @@ matrix: pip3 install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python3/ cd ${TRAVIS_BUILD_DIR}/tests - ./test-all.sh smoke || travis_terminate $? + ./test-all.sh full || travis_terminate $? sleep 1 cd ${TRAVIS_BUILD_DIR}/tests/pytest From 8551855c9e42a0c854580828d07b1291a9fbe3ce Mon Sep 17 00:00:00 2001 From: Ping Xiao Date: Sat, 10 Oct 2020 11:11:16 +0800 Subject: [PATCH 2/2] install guppy for crash_gen --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index eb7742f2b4..5ce9873d15 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,10 +54,11 @@ matrix: py3ver=`python3 --version|awk '{print $2}'|cut -d "." -f 1,2` && apt install python$py3ver-dev pip3 install psutil + pip3 install guppy3 pip3 install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python3/ cd ${TRAVIS_BUILD_DIR}/tests - ./test-all.sh full || travis_terminate $? + ./test-all.sh smoke || travis_terminate $? sleep 1 cd ${TRAVIS_BUILD_DIR}/tests/pytest