#!/bin/bash

set -e

echo 'Running integration tests...'
export PYTHONUNBUFFERED=1
pytest tests/integration/ $TEST_ARGS

echo 'Done!'
