#!/bin/bash

set -e

# run pytest with args set
echo 'Running integration tests...'

pytest tests/integration/ $TEST_ARGS

echo 'Done!'
