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.3 kB

1234567891011121314151617181920212223242526272829
  1. pip install -r requirements.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  2. pip install -r requirements/audio.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  3. pip install -r requirements/cv.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  4. pip install -r requirements/multi-modal.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  5. pip install -r requirements/nlp.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  6. pip install -r requirements/tests.txt
  7. # install numpy<=1.18 for tensorflow==1.15.x
  8. pip install "numpy<=1.18"
  9. git config --global --add safe.directory /Maas-lib
  10. # linter test
  11. # use internal project for pre-commit due to the network problem
  12. pre-commit run -c .pre-commit-config_local.yaml --all-files
  13. if [ $? -ne 0 ]; then
  14. echo "linter test failed, please run 'pre-commit run --all-files' to check"
  15. exit -1
  16. fi
  17. # test with install
  18. python setup.py install
  19. if [ $# -eq 0 ]; then
  20. ci_command="python tests/run.py --subprocess"
  21. else
  22. ci_command="$@"
  23. fi
  24. echo "Running case with command: $ci_command"
  25. $ci_command
  26. #python tests/run.py --isolated_cases test_text_to_speech.py test_multi_modal_embedding.py test_ofa_tasks.py test_video_summarization.py