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