Files
pyeclib/.unittests
Matthew Oliver 686ef241ca .unittests: change nose to pytest
We've been using pytest for a while but the .unittests script still uses
nose. So let's change this over to pytest.

Change-Id: I5e67e9ea641af1347a824c2eed8fda7cb25be82b
2024-09-23 11:58:25 +10:00

10 lines
105 B
Bash
Executable File

#!/bin/bash
TOP_DIR=$(dirname $(realpath "$0"))
cd $TOP_DIR/test
pytest $@
rvalue=$?
cd -
exit $rvalue