You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
memos/store/test
boojack 101704c8ea
feat(ai): add BYOK audio transcription (#5832)
2 months ago
..
README.md
attachment_filter_test.go
attachment_test.go
containers.go chore: add migration upgrade coverage (#5796) 3 months ago
filter_helpers_test.go
idp_test.go
inbox_test.go refactor(inbox): store memo comment payloads without activity records (#5741) 3 months ago
instance_setting_test.go feat(ai): add BYOK audio transcription (#5832) 2 months ago
main_test.go
memo_filter_test.go fix(filter): enforce CEL syntax semantics 3 months ago
memo_relation_test.go
memo_test.go
migrator_test.go test: remove raw SQL migration backfill test setup 3 months ago
migrator_upgrade_test.go chore: add migration upgrade coverage (#5796) 3 months ago
reaction_test.go
store.go
user_setting_test.go feat(instance): add canonical tag metadata setting (#5736) 3 months ago
user_test.go refactor(store): remove synthetic system bot user lookup (#5778) 3 months ago

README.md

Store tests

How to test store with MySQL?

  1. Create a database in your MySQL server.
  2. Run the following command with two environment variables set:
DRIVER=mysql DSN=root@/memos_test go test -v ./test/store/...
  • DRIVER should be set to mysql.
  • DSN should be set to the DSN of your MySQL server.