Skip to content

Commit dbab3f4

Browse files
committed
ci: List used python packages
1 parent 7480daa commit dbab3f4

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

scripts/ci/ci-run-sqllogic-tests-cluster.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ if [ $# -gt 0 ]; then
1515
fi
1616
echo "Run suites using argument: $RUN_DIR"
1717

18+
echo "pip list"
19+
python3 -m pip list
20+
1821
echo "Starting databend-sqllogic tests"
1922
python3 main.py $RUN_DIR
2023

scripts/ci/ci-run-sqllogic-tests.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ if [ $# -gt 0 ]; then
1515
fi
1616
echo "Run suites using argument: $RUN_DIR"
1717

18+
echo "pip list"
19+
python3 -m pip list
20+
1821
echo "Starting databend-sqllogic tests"
1922
python3 main.py --skip-dir=mode $RUN_DIR
2023

tests/compat/test-compat.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ kill_proc() {
136136

137137
# Test specified version of query and meta
138138
run_test() {
139+
echo " === pip list"
140+
python3 -m pip list
141+
139142
local query_ver="$1"
140143
local metasrv_ver="$2"
141144

tests/fuse-compat/test-fuse-compat.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,9 @@ kill_proc() {
125125
# Test fuse-data compatibility between an old version query and the current
126126
# version query.
127127
run_test() {
128+
echo " === pip list"
129+
python3 -m pip list
130+
128131
local query_old_ver="$1"
129132

130133
echo " === Test with query-$query_old_ver and current query"

0 commit comments

Comments
 (0)