From 8108173df1418a913a9a69c51feb77c590d9c103 Mon Sep 17 00:00:00 2001
From: Colin <colinnlsn@gmail.com>
Date: Thu, 11 May 2017 16:24:28 -0500
Subject: [PATCH] Travis upgrades

Made warnings not errors.
Reintroduced unit tests
---
 tool/travis.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tool/travis.sh b/tool/travis.sh
index dd37f75b..90204b7c 100644
--- a/tool/travis.sh
+++ b/tool/travis.sh
@@ -4,10 +4,10 @@
 set -e
 
 # Analyze the code.
-dartanalyzer --fatal-warnings \
+dartanalyzer \
   lib/epub.dart \
   lib/src/epubReader.dart
 
 # Run the tests.
-#dart -c test/enum_string_test.dart
-#dart -c test/epub_reader_tests.dart
\ No newline at end of file
+dart -c test/enum_string_test.dart
+dart -c test/epub_reader_tests.dart
\ No newline at end of file