8 lines
56 B
Bash
8 lines
56 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd $(dirname $0)
|
||
|
|
||
|
nosetests-2.7 -v
|