12 lines
389 B
Bash
Executable File
12 lines
389 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
uv run tests/store/dump_schema.py tests/resources/db/latest_schema.sql
|
|
|
|
./tests/db/compose.sh down --volumes --remove-orphans
|
|
./tests/db/compose.sh build --build-arg DEPENDENCIES="$(uv run dev/extract_deps.py)"
|
|
for service in $(./tests/db/compose.sh config --services | grep '^mlflow-')
|
|
do
|
|
./tests/db/compose.sh run --rm $service python tests/db/test_schema.py
|
|
done
|