#!/bin/bash

set -e

echo 'Running integration tests...'
python -m pytest tests/integration $TEST_ARGS

echo 'Done!'
