#!/bin/bash

set -e

echo 'Running integration tests...'
pytest --noconftest tests/integration/ $TEST_ARGS

echo 'Done!'
