DATA_REPO_GIT="" python3 -m pytest -v test/regression 2>test.err
ret=$?
if [ $ret -ne 0 ]; then
  cat test.err > /dev/stderr
  exit $ret
fi
