Skip to content

Commit

Permalink
chore(datastore): skip flutter unit tests in Circle CI (#2435)
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis Sheppard committed Nov 29, 2022
1 parent 08b89d8 commit 57c938c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .circleci/test_all_plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ cd "./$plugin"
case $test_suite in
flutter-test)
echo "=== Running Flutter unit tests for $plugin ==="

# These tests are also running in GH actions. Until we remove the Circle CI check in repo settings,
# just skip here.
if [[ "$plugin" = "amplify_datastore" ]]; then
echo "Skipping redundant flutter tests for datastore."
exit 0
fi

# Navigate into the app-facing plugin for federated plugin structures
if [ -d "${plugin}" ]; then
Expand Down

0 comments on commit 57c938c

Please sign in to comment.