jobmanager/tests/runtests_html.sh
Paul Müller 5a0dc656a2 - added runtests.py (blob of pytest)
- html output with aha uses runtests.py
- renamed test directory
2015-01-21 19:06:00 +01:00

10 lines
289 B
Bash
Executable file

#!/bin/bash
# Go to script directory
cd $(dirname $0)
OUTFILE='pytest.html'
echo "Working directory: $(pwd)"
echo "Running py.test ..."
(date; python runtests.py --color=yes) | aha --black --title "pytest output for jobmanager module"> $OUTFILE
echo "Done! (output written to $OUTFILE)"