forked from shamblett/mqtt_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
23 lines (22 loc) · 842 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: dart
dart:
# Install the latest stable release
- stable
dart_task:
- test: --exclude-tags no-xvfb
xvfb: false
script:
- pub run test test/mqtt_client_base_test.dart
- pub run test test/mqtt_client_message_test.dart
- pub run test test/mqtt_client_management_test.dart
- pub run test test/mqtt_client_publishing_manager_test.dart
- pub run test test/mqtt_client_subscription_manager_test.dart
- pub run test test/mqtt_client_connection_unsecure_test.dart
- pub run test test/mqtt_client_connection_secure_test.dart
- pub run test test/mqtt_client_connection_ws_test.dart
- pub run test test/mqtt_client_connection_autoreconnect_test.dart
- pub run test test/mqtt_client_connection_autoreconnect_nobroker_test.dart
- pub run test test/mqtt_client_keep_alive_test.dart
branches:
only:
- master