mirror of
https://github.com/vale981/jobmanager
synced 2025-03-05 09:51:38 -05:00
10 lines
289 B
Bash
Executable file
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)"
|