Skip to content

Commit

Permalink
fix: upgrade .gitlab-ci.yml & flutter_ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
roiskhoiron committed May 28, 2024
1 parent f0a5495 commit 668e075
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/flutter_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,13 +177,14 @@ jobs:
- name: Analyze project source
run: flutter analyze

- run: cd test
- run: cd test/integration_test

# Your project will need to have tests in test/ and a dependency on
# package:test for this step to succeed. Note that Flutter projects will
# want to change this to 'flutter test'.
- name: Run integration tests
run: flutter test --coverage integration_test
run: flutter test --coverage
# run: flutter test --coverage integration_test

golden-test:
runs-on: ubuntu-latest
Expand Down
5 changes: 3 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ widget-test:
integration-test:
stage: integration_test
script:
- cd test
- flutter test --coverage integration_test
- cd test/integration_test
- flutter test --coverage
# - flutter test --coverage integration_test

golden_test:
stage: golden_test
Expand Down

0 comments on commit 668e075

Please sign in to comment.