chore(ci): make test workflow faster with test --stale
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Moritz 2026-06-02 23:35:39 +02:00
parent 1ef6ea502e
commit d51dcb1ac3
2 changed files with 24 additions and 6 deletions

View file

@ -62,3 +62,7 @@ config :mv, :join_rate_limit, scale_ms: 60_000, limit: 2
# Ash: silence "after_transaction hooks in surrounding transaction" warning when using
# Ecto sandbox (tests run in a transaction; create_member after_transaction is expected).
config :ash, warn_on_transaction_hooks?: false
# StreamData property tests: generated cases per property, overridable via PROPERTY_RUNS
# (the `just check` recipe sets it low for speed; default 100 otherwise).
config :stream_data, max_runs: String.to_integer(System.get_env("PROPERTY_RUNS") || "100")