#!/bin/bash

set -e

# Runs the integration tests against the local postgres-source / postgres-target
# services. Unlike lint-and-test.sh (which excludes tests/integration/), this
# runs only the integration suite.
echo 'Running integration tests...'
python -m pytest $TEST_ARGS tests/integration/

echo 'Done!'
