test: raise default assert_receive timeout
All checks were successful
ci/woodpecker/pr/test/2 Pipeline was successful
ci/woodpecker/pr/test/1 Pipeline was successful

In our CI we sometimes fail assert_receive statmenets even in retry
making CI results unreliabl'ish. The default is 100ms, now it is 1s.

See e.g: https://ci.akkoma.dev/repos/1/pipeline/504/5
This commit is contained in:
Oneric 2025-11-23 00:00:00 +00:00
commit e6ce7751a9

View file

@ -6,6 +6,7 @@ os_exclude = if :os.type() == {:unix, :darwin}, do: [skip_on_mac: true], else: [
ExUnit.start(
capture_log: true,
assert_receive_timeout: 1_000,
exclude: [:federated, :erratic] ++ os_exclude
)