Skip to content

Commit

Permalink
Send code coverage to Coveralls.io
Browse files Browse the repository at this point in the history
  • Loading branch information
danschultz committed Mar 10, 2015
1 parent 58c8a33 commit 45add85
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .travis.yml
@@ -1,4 +1,10 @@
language: dart
env:
global:
secure: bYjoEA0gSLf/OzVpwKY/QiWniDNYUQNyOO5A5UpvJytttheuFotDcN87kL82ZoV9BoKLNpkWtEg+Rv8kUl2WohSgRgrNYt3uJi0ZNo1VLB3UXGD7Nx00/Hu+lh/NOxckiGsxeY0CbYfRW18HQDaesO0H8PqyXf9HcSRPwXMXnEw=
dart:
- stable
- dev
- dev
after_success:
- pub global activate dart_coveralls
- pub global run dart_coveralls:dart_coveralls report --exclude-test-files --token $COVERALLS_TOKEN ./test/all_tests.dart
1 change: 1 addition & 0 deletions README.md
@@ -1,6 +1,7 @@
# Frappé

[![Build Status](https://travis-ci.org/danschultz/frappe.svg)](https://travis-ci.org/danschultz/frappe)
[![Coverage Status](https://coveralls.io/repos/danschultz/frappe/badge.svg)](https://coveralls.io/r/danschultz/frappe)

A functional reactive programming library for Dart. Frappé extends the functionality of Dart's streams, and introduces new concepts like properties/signals.

Expand Down
9 changes: 9 additions & 0 deletions test/all_tests.dart
@@ -0,0 +1,9 @@
library all_tests;

import 'event_stream_test.dart' as event_stream;
import 'property_test.dart' as property;

void main() {
event_stream.main();
property.main();
}

0 comments on commit 45add85

Please sign in to comment.