[PR #4555] [CLOSED] feat: add integration test on Android #6309

Closed
opened 2026-03-23 22:22:38 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4555
Author: @LucasXu0
Created: 1/30/2024
Status: Closed

Base: mainHead: android_integration_test


📝 Commits (10+)

  • 7604229 feat: add integration test on Android
  • 268d21b chore: remove device model
  • 36f9310 feat: add ios ci
  • 910c31d Merge branch 'main' into android_integration_test
  • 915f6c4 chore: try to fix ios ci
  • 0da131d chore: try to fix android ci
  • 162e5b7 Merge branch 'main' into android_integration_test
  • 082682b chore: use flutter-build-android-ci in CI job
  • e07d8ac Merge branch 'main' into android_integration_test
  • 3bd23fc Merge branch 'main' into android_integration_test

📊 Changes

80 files changed (+519 additions, -350 deletions)

View changed files

.github/workflows/android_ci.yaml (+126 -0)
.github/workflows/ios_ci.yaml (+97 -0)
.github/workflows/mobile_ci.yaml (+0 -117)
📝 frontend/appflowy_flutter/integration_test/desktop/appearance_settings_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/board/board_add_row_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/board/board_group_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/board/board_hide_groups_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/desktop/board/board_row_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/desktop/board/board_test_runner.dart (+0 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/board_test.dart (+2 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/anon_user_continue_test.dart (+3 -3)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/appflowy_cloud_auth_test.dart (+6 -5)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/cloud_runner.dart (+0 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/document_sync_test.dart (+3 -3)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/empty_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/supabase_auth_test.dart (+4 -3)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/user_setting_sync_test.dart (+5 -5)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_calendar_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_cell_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_field_settings_test.dart (+2 -2)

...and 60 more files

📄 Description

Feature Preview


PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/4555 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 1/30/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `android_integration_test` --- ### 📝 Commits (10+) - [`7604229`](https://github.com/AppFlowy-IO/AppFlowy/commit/7604229a76262f59612d22b71a59a3143a13e7aa) feat: add integration test on Android - [`268d21b`](https://github.com/AppFlowy-IO/AppFlowy/commit/268d21b47e7f02bc7a51ae43f80c494c92d0777f) chore: remove device model - [`36f9310`](https://github.com/AppFlowy-IO/AppFlowy/commit/36f931033606bf7a09192372685dfc04049b3d8c) feat: add ios ci - [`910c31d`](https://github.com/AppFlowy-IO/AppFlowy/commit/910c31d7711524568924b76c8464c36822f26f25) Merge branch 'main' into android_integration_test - [`915f6c4`](https://github.com/AppFlowy-IO/AppFlowy/commit/915f6c4a7fd8c9b84e25a2d70e022a3124dda7ec) chore: try to fix ios ci - [`0da131d`](https://github.com/AppFlowy-IO/AppFlowy/commit/0da131d1fe02a39eadb7b16ccabd867a8c86163b) chore: try to fix android ci - [`162e5b7`](https://github.com/AppFlowy-IO/AppFlowy/commit/162e5b788d7c3e3beb12cd343305cc930dcf1fc7) Merge branch 'main' into android_integration_test - [`082682b`](https://github.com/AppFlowy-IO/AppFlowy/commit/082682b8b1865375079a5f875283cf8144142c19) chore: use flutter-build-android-ci in CI job - [`e07d8ac`](https://github.com/AppFlowy-IO/AppFlowy/commit/e07d8ac3829041e0437f005bc1beaa9be07b2e91) Merge branch 'main' into android_integration_test - [`3bd23fc`](https://github.com/AppFlowy-IO/AppFlowy/commit/3bd23fc178eb4ca1e6e81957ee848be689a67b66) Merge branch 'main' into android_integration_test ### 📊 Changes **80 files changed** (+519 additions, -350 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/android_ci.yaml` (+126 -0) ➕ `.github/workflows/ios_ci.yaml` (+97 -0) ➖ `.github/workflows/mobile_ci.yaml` (+0 -117) 📝 `frontend/appflowy_flutter/integration_test/desktop/appearance_settings_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/board/board_add_row_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/board/board_group_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/board/board_hide_groups_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/desktop/board/board_row_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/desktop/board/board_test_runner.dart` (+0 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/board_test.dart` (+2 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/anon_user_continue_test.dart` (+3 -3) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/appflowy_cloud_auth_test.dart` (+6 -5) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/cloud_runner.dart` (+0 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/document_sync_test.dart` (+3 -3) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/empty_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/supabase_auth_test.dart` (+4 -3) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/user_setting_sync_test.dart` (+5 -5) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_calendar_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_cell_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_field_settings_test.dart` (+2 -2) _...and 60 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:22:38 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#6309
No description provided.