Skip to content

Commit

Permalink
tests: use python3 to run http_api test to fix failed integration_tes…
Browse files Browse the repository at this point in the history
…ts (pingcap#5473)

close pingcap#5474

Signed-off-by: qupeng <[email protected]>
  • Loading branch information
zhangyangyu authored and hicqu committed Jun 25, 2022
1 parent f526ab4 commit dc63f57
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/integration_tests/http_api/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function run() {
return
fi

sudo pip install -U requests==2.26.0
sudo python3 -m pip install -U requests==2.26.0

rm -rf $WORK_DIR && mkdir -p $WORK_DIR

Expand Down Expand Up @@ -59,10 +59,10 @@ function run() {

SINK_URI="mysql://normal:[email protected]:3306/"

python $CUR/util/test_case.py check_health $TLS_DIR
python $CUR/util/test_case.py get_status $TLS_DIR
python3 $CUR/util/test_case.py check_health $TLS_DIR
python3 $CUR/util/test_case.py get_status $TLS_DIR

python $CUR/util/test_case.py create_changefeed $TLS_DIR "$SINK_URI"
python3 $CUR/util/test_case.py create_changefeed $TLS_DIR "$SINK_URI"
# wait for changefeed created
sleep 2

Expand Down Expand Up @@ -105,7 +105,7 @@ function run() {
)

for case in ${sequential_cases[@]}; do
python $CUR/util/test_case.py "$case" $TLS_DIR
python3 $CUR/util/test_case.py "$case" $TLS_DIR
done

cleanup_process $CDC_BINARY
Expand Down

0 comments on commit dc63f57

Please sign in to comment.