2022-07-20 11:49:05 +08:00
|
|
|
pip install -r requirements.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/tests.txt
|
2022-08-03 11:49:12 +08:00
|
|
|
|
2022-07-20 11:49:05 +08:00
|
|
|
git config --global --add safe.directory /Maas-lib
|
|
|
|
|
|
|
|
|
|
# linter test
|
|
|
|
|
# use internal project for pre-commit due to the network problem
|
|
|
|
|
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"
|
|
|
|
|
exit -1
|
|
|
|
|
fi
|
2022-08-22 16:01:42 +08:00
|
|
|
# test with install
|
|
|
|
|
python setup.py install
|
2022-07-20 11:49:05 +08:00
|
|
|
|
2022-08-30 17:59:15 +08:00
|
|
|
if [ $# -eq 0 ]; then
|
|
|
|
|
ci_command="python tests/run.py --subprocess"
|
|
|
|
|
else
|
|
|
|
|
ci_command="$@"
|
|
|
|
|
fi
|
|
|
|
|
echo "Running case with command: $ci_command"
|
|
|
|
|
$ci_command
|