#!/bin/bash

set -e

echo 'Running integration tests...'
PYTHONDONTWRITEBYTECODE=1 python -m pytest -v tests/integration/api/ \
    -p no:cacheprovider
echo 'Done!'
