Skip to content

Commit

Permalink
Fix test args not being passed
Browse files Browse the repository at this point in the history
  • Loading branch information
greglittlefield-wf committed Oct 10, 2024
1 parent d754ed8 commit 105f01b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dart_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
if [[ "$DART_VERSION" =~ ^3 ]]; then
TEST_ARGS="--exclude-tags=dart-2-only"
fi
dart test -P vm "TEST_ARGS"
dart test -P vm "$TEST_ARGS"
if: always() && steps.install.outcome == 'success' && steps.build.outcome == 'success'

- name: Run tests (DDC)
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
if [[ "$DART_VERSION" =~ ^3 ]]; then
TEST_ARGS="--exclude-tags=dart-2-only"
fi
dart test -p vm -- test/vm_tests/builder
dart test -p vm "$TEST_ARGS" -- test/vm_tests/builder
analyzer_plugin:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 105f01b

Please sign in to comment.