#!/bin/bash

set -e

# Don't clutter test dir with bytecode
export PYTHONDONTWRITEBYTECODE=1

if [ "$(id -u)" -ne 0 ]; then
        echo "Please run tests with super user privileges."
        exit 1
fi

cd /usr/share/librem5/check/
pytest-3 "$@"

