Skip to content

Commit

Permalink
Merge fde8ac6 into 41d3330
Browse files Browse the repository at this point in the history
  • Loading branch information
vanlooverenkoen committed Oct 3, 2020
2 parents 41d3330 + fde8ac6 commit 44278fc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -9,6 +9,9 @@ addons:
- libstdc++6
- fonts-droid-fallback

before_install:
- chmod +x ./tools/test.sh

sudo: required

before_script:
Expand All @@ -22,14 +25,11 @@ before_script:
- flutter pub global activate dart_style
- flutter packages get || exit -1;

after_success:
- coveralls-lcov coverage/lcov.info\

jobs:
include:
- stage: quality
name: "Tests"
script: flutter test --coverage || exit -1;
script: ./tools/test.sh
- stage: quality
name: "Analyze"
script: flutter analyze || exit -1;
Expand Down
5 changes: 5 additions & 0 deletions tools/test.sh
@@ -0,0 +1,5 @@
#!/bin/bash

flutter test --coverage || exit -1;

coveralls-lcov coverage/lcov.info

0 comments on commit 44278fc

Please sign in to comment.