
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
10 lines
105 B
Bash
Executable File
10 lines
105 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TOP_DIR=$(dirname $(realpath "$0"))
|
|
|
|
cd $TOP_DIR/test
|
|
pytest $@
|
|
rvalue=$?
|
|
cd -
|
|
exit $rvalue
|