when there is a param, load test only for this backend
This commit is contained in:
parent
e7c24c13c8
commit
876d05ffa6
1 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
find $(dirname $0)/../weboob -name test.py | xargs nosetests -sv
|
||||
if [ "$1" != "" ]; then
|
||||
nosetests -sv $(dirname $0)/../weboob/backends/$1
|
||||
else
|
||||
find $(dirname $0)/../weboob -name test.py | xargs nosetests -sv
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue