#!/bin/bash

set -e

echo 'Running integration tests...'
# Exclude `write`-marked tests: they mutate data and only run when the operator
# supplies throwaway IDs, so they stay opt-in against shared environments.
pytest $TEST_ARGS -m 'not write' tests/integration/

echo 'Done!'
