7 lines
162 B
Bash
Executable file
7 lines
162 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ "$1" != "" ]; then
|
|
nosetests -sv $(dirname $0)/../weboob/backends/$1
|
|
else
|
|
find $(dirname $0)/../weboob -name test.py | xargs nosetests -sv
|
|
fi
|