mirror of
https://github.com/modelscope/modelscope.git
synced 2025-12-16 16:27:45 +01:00
50 lines
2.2 KiB
Bash
50 lines
2.2 KiB
Bash
if [ "$MODELSCOPE_SDK_DEBUG" == "True" ]; then
|
|
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
|
|
pip config set install.trusted-host mirrors.aliyun.com
|
|
pip install -r requirements/tests.txt
|
|
git config --global --add safe.directory /Maas-lib
|
|
git config --global user.email tmp
|
|
git config --global user.name tmp.com
|
|
|
|
# linter test
|
|
# use internal project for pre-commit due to the network problem
|
|
if [ `git remote -v | grep alibaba | wc -l` -gt 1 ]; then
|
|
pre-commit run -c .pre-commit-config_local.yaml --all-files
|
|
if [ $? -ne 0 ]; then
|
|
echo "linter test failed, please run 'pre-commit run --all-files' to check"
|
|
echo "From the repository folder"
|
|
echo "Run 'pip install -r requirements/tests.txt' install test dependencies."
|
|
echo "Run 'pre-commit install' install pre-commit hooks."
|
|
echo "Finally run linter with command: 'pre-commit run --all-files' to check."
|
|
echo "Ensure there is no failure!!!!!!!!"
|
|
exit -1
|
|
fi
|
|
fi
|
|
|
|
pip install -r requirements/framework.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
|
|
pip install -r requirements/audio.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
|
|
pip install -r requirements/cv.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
|
|
pip install -r requirements/multi-modal.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
|
|
pip install -r requirements/nlp.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
|
|
pip install -r requirements/science.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
|
|
|
|
python -m spacy download en_core_web_sm
|
|
pip install faiss-gpu
|
|
pip install healpy
|
|
pip install huggingface-hub==0.25.2
|
|
pip install ms-swift>=3.0.1
|
|
# test with install
|
|
pip install .
|
|
else
|
|
echo "Running case in release image, run case directly!"
|
|
fi
|
|
# remove torch_extensions folder to avoid ci hang.
|
|
rm -rf ~/.cache/torch_extensions
|
|
if [ $# -eq 0 ]; then
|
|
ci_command="python tests/run.py --subprocess"
|
|
else
|
|
ci_command="$@"
|
|
fi
|
|
echo "Running case with command: $ci_command"
|
|
$ci_command
|