説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

runtest 329B

123456789101112
  1. #!/bin/bash
  2. # Old runtest is broken because of DataSource.picklediff tests
  3. # we have to run each test package in differents python instances
  4. test_package_name='test'
  5. for d in $(find . -type d -name "$test_package_name")
  6. do
  7. echo -e "\tTesting\t$(dirname $d)\n"
  8. python -W ignore -m unittest discover -qf -s "$d" || break
  9. done