#!/bin/bash

set -e

# Run integration tests
echo 'Running integration tests...'
PYTHONDONTWRITEBYTECODE=1 poetry run pytest tests/integration \
  -p no:cacheprovider
