You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ci_container_test.sh 1.7 kB

123456789101112131415161718192021222324252627282930313233343536
  1. echo "Testing envs"
  2. printenv
  3. echo "ENV END"
  4. if [ "$MODELSCOPE_SDK_DEBUG" == "True" ]; then
  5. awk -F: '/^[^#]/ { print $1 }' requirements/framework.txt | xargs -n 1 pip install -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  6. awk -F: '/^[^#]/ { print $1 }' requirements/audio.txt | xargs -n 1 pip install -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  7. awk -F: '/^[^#]/ { print $1 }' requirements/cv.txt | xargs -n 1 pip install -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  8. awk -F: '/^[^#]/ { print $1 }' requirements/multi-modal.txt | xargs -n 1 pip install -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  9. awk -F: '/^[^#]/ { print $1 }' requirements/nlp.txt | xargs -n 1 pip install -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  10. pip install -r requirements/tests.txt
  11. git config --global --add safe.directory /Maas-lib
  12. git config --global user.email tmp
  13. git config --global user.name tmp.com
  14. # linter test
  15. # use internal project for pre-commit due to the network problem
  16. if [ `git remote -v | grep alibaba | wc -l` -gt 1 ]; then
  17. pre-commit run -c .pre-commit-config_local.yaml --all-files
  18. if [ $? -ne 0 ]; then
  19. echo "linter test failed, please run 'pre-commit run --all-files' to check"
  20. exit -1
  21. fi
  22. fi
  23. # test with install
  24. python setup.py install
  25. else
  26. echo "Running case in release image, run case directly!"
  27. fi
  28. if [ $# -eq 0 ]; then
  29. ci_command="python tests/run.py --subprocess"
  30. else
  31. ci_command="$@"
  32. fi
  33. echo "Running case with command: $ci_command"
  34. $ci_command