toot/tests
Ivan Habunek c907973f88
Add tests for polls commands
2025-08-06 10:06:47 +02:00
..
assets
integration Add tests for polls commands 2025-08-06 10:06:47 +02:00
tui
README.md
__init__.py
test_config.py
test_utils.py Use dateutil to parse datetimes 2025-03-06 09:47:29 +01:00
test_version.py
utils.py Remove unused helpers 2024-04-06 15:06:59 +02:00

README.md

Testing toot

This document is WIP.

Mastodon

TODO

Pleroma

TODO

Akkoma

Install using the guide here: https://docs.akkoma.dev/stable/installation/docker_en/

Disable captcha and throttling by adding this to config/prod.exs:

# Disable captcha for testing
config :pleroma, Pleroma.Captcha,
  enabled: false

# Disable rate limiting for testing
config :pleroma, :rate_limit,
  authentication: nil,
  timeline: nil,
  search: nil,
  app_account_creation: nil,
  relations_actions: nil,
  relation_id_action: nil,
  statuses_actions: nil,
  status_id_action: nil,
  password_reset: nil,
  account_confirmation_resend: nil,
  ap_routes: nil