#!/bin/bash

set -e

echo 'Running integration tests...'
python -m pytest -v tests/integration/

echo 'Done!'
