#!/usr/bin/env bash

set -euo pipefail

cd "$(dirname "$0")/../../" # Navigate to the root of the project

cd database/fixture
csv_dir="${1:-integrationtest}"

python fixture.py --csv-dir "$csv_dir"
