fix: more work on metadata diff

This commit is contained in:
2026-04-27 11:40:20 +02:00
parent 53dd9deeab
commit 59833dcabe
7 changed files with 255 additions and 44 deletions

View File

@@ -1,2 +1,10 @@
cache_root = Path.join(System.tmp_dir!(), "bds-test-cache-#{System.unique_integer([:positive])}")
File.mkdir_p!(cache_root)
Application.put_env(:bds, :project_cache_root, cache_root)
ExUnit.start()
ExUnit.after_suite(fn _results ->
File.rm_rf(cache_root)
end)
Ecto.Adapters.SQL.Sandbox.mode(BDS.Repo, :manual)