#!/bin/bash
set -e
# We copy the test suite someplace else so it can't use the source tree modules
# and point PYTHONPATH to the installed catkin_lint module.
export PYTHONPATH=/usr/share/catkin-lint
tmpdir="$(mktemp -d)"
trap "rm -rf $tmpdir" EXIT

set -x
cp -rv test "$tmpdir"
cd "$tmpdir"
nosetests3 -v

