Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsenko committed Jan 18, 2024
1 parent fe76d20 commit 0fdb91a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/flutter-desktop-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,14 @@ jobs:
if: ${{ contains(inputs.os, 'macos') }}

- name: Run tests
run: ${{ inputs.os == 'linux' && 'xvfb-run' || '' }} flutter drive -d ${{ inputs.os }} --target=test_driver/app.dart --suppress-analytics --dart-entrypoint-args="" --debug # -a="Some test name"
run: |
${{ inputs.os == 'linux' && 'xvfb-run' || '' }} \
flutter drive -d ${{ inputs.os }} \
--target=test_driver/app.dart \
--suppress-analytics \
--dart-entrypoint-args="" \
--debug \
--dart-define BAAS_BAASAAS_API_KEY=$BAAS_BAASAAS_API_KEY \
--dart-define BAAS_DIFFERENTIATO=$BAAS_DIFFERENTIATO \
# -a="Some test name"
working-directory: ./flutter/realm_flutter/tests

0 comments on commit 0fdb91a

Please sign in to comment.