blob: 2886c952ad8df4fe05146ebd3dc5c56360fb7779 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
if [ ! -f "addon-sdk/bin/activate" ]; then
die "Addon SDK not available. Run git submodule update."
fi
pushd addon-sdk
source bin/activate
popd
echo "Running tests"
cfx test --verbose
|