#!/bin/bash

SRC_DIR=$(dirname $(realpath "$0"))

cd ${SRC_DIR}/test/probe
pytest $@
rvalue=$?
cd -

exit $rvalue