Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update
  • Loading branch information
buenaflor committed Aug 6, 2025
commit 92368ca744c9a02bbd34e7f14185f152834917cb
4 changes: 2 additions & 2 deletions .github/actions/flutter-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ runs:
env:
INPUT_DIRECTORY: ${{ inputs.directory }}
run: |
if [[ "$INPUT_DIRECTORY" == 'isar' ]]; then
if [[ "$INPUT_DIRECTORY" == 'packages/isar' ]]; then
testCmd="flutter test -j 1 --test-randomize-ordering-seed=random"
else
testCmd="flutter test --test-randomize-ordering-seed=random"
fi

if ${{ (matrix.target == 'linux' && matrix.sdk == 'stable' && 'true') || 'false' }} ; then
$testCmd --coverage
if [[ "$INPUT_DIRECTORY" == 'flutter' ]] ; then
if [[ "$INPUT_DIRECTORY" == 'packages/flutter' ]]; then
dart run remove_from_coverage -f coverage/lcov.info -r 'binding.dart'
fi
else
Expand Down
Loading