Fix cleaning up integration-runner docker volume

This commit is contained in:
Mikhail f. Shiryaev 2022-05-10 17:39:47 +02:00
parent 76c3022029
commit e31ac2e717
No known key found for this signature in database
GPG Key ID: 4B02ED204C7D93F4

View File

@ -28,8 +28,11 @@ done
set -e
# cleanup for retry run if volume is not recreated
docker kill "$(docker ps -aq)" || true
docker rm "$(docker ps -aq)" || true
# shellcheck disable=SC2046
{
docker kill $(docker ps -aq) || true
docker rm $(docker ps -aq) || true
}
echo "Start tests"
export CLICKHOUSE_TESTS_SERVER_BIN_PATH=/clickhouse