#!/usr/bin/env bash

set -e

echo 'Running integration tests...'
PYTHONDONTWRITEBYTECODE=1 COVERAGE_FILE=build/.coverage python -m pytest -v tests/integration/ \
  -p no:cacheprovider
