File: run_tests

package info (click to toggle)
python-pypump 0.3%2Bgit20130823.1.97bffc6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 328 kB
  • ctags: 333
  • sloc: python: 1,630; makefile: 140; sh: 7
file content (12 lines) | stat: -rwxr-xr-x 170 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/bash

TEST_DIR="tests/"

echo "Running PyPump tests!"

if [ -e $TEST_DIR ]; then
    nosetests -w $TEST_DIR
else
    echo $TEST_DIR." could not be found."
fi