mirror of https://github.com/minio/minio.git
30 lines
1.2 KiB
Bash
Executable File
30 lines
1.2 KiB
Bash
Executable File
#!/bin/bash -e
|
|
#
|
|
# Mint (C) 2017 Minio, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
MINIO_PY_VERSION=$(curl --retry 10 -Ls -o /dev/null -w "%{url_effective}" https://github.com/minio/minio-py/releases/latest | sed "s/https:\/\/github.com\/minio\/minio-py\/releases\/tag\///")
|
|
if [ -z "$MINIO_PY_VERSION" ]; then
|
|
echo "unable to get minio-py version from github"
|
|
exit 1
|
|
fi
|
|
|
|
test_run_dir="$MINT_RUN_CORE_DIR/minio-py"
|
|
# FIX https://github.com/pypa/pip/issues/5221
|
|
python -m pip install --upgrade pip
|
|
python -m pip install --user faker
|
|
python -m pip install minio=="$MINIO_PY_VERSION"
|
|
$WGET --output-document="$test_run_dir/tests.py" "https://raw.githubusercontent.com/minio/minio-py/${MINIO_PY_VERSION}/tests/functional/tests.py"
|