~vpec/maus/tof_calib_read

663.9.166 by Chris Rogers
Split style tests; passes everything now I think
1
#!/bin/bash
2
set -e
697.124.34 by Christopher Hunt
Merged 2.2
3
4
if [ -z "${MAUS_ROOT_DIR}" ]; then  # see if the variable exists yet
5
    echo "ERROR: \$MAUS_ROOT_DIR not set"
6
    exit 1;
7
fi
8
9
echo
10
echo "INFO: Running the style tests"
11
echo
12
663.9.166 by Chris Rogers
Split style tests; passes everything now I think
13
python ${MAUS_THIRD_PARTY}/third_party/install/bin/nosetests -v ${MAUS_ROOT_DIR}/tests/style
697.124.34 by Christopher Hunt
Merged 2.2
14
15
echo
16
echo "INFO: Style tests complete"
17
echo