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

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