From d7aee9421544aaff12fd4c26677085fd555d6728 Mon Sep 17 00:00:00 2001 From: schneefux Date: Thu, 11 Sep 2014 14:11:33 +0200 Subject: Added test for vocabcompiler to `--light` tests and updated travis config --- client/test.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'client/test.py') diff --git a/client/test.py b/client/test.py index 98838d6..8925e66 100644 --- a/client/test.py +++ b/client/test.py @@ -233,13 +233,9 @@ if __name__ == '__main__': description='Test suite for the Jasper client code.') parser.add_argument('--light', action='store_true', help='runs a subset of the tests (only requires Python dependencies)') - parser.add_argument('--vocabcompiler', action='store_true', - help='runs the vocabcompiler test (independently of the --light argument)') args = parser.parse_args() - test_cases = [TestBrain, TestModules] - if args.vocabcompiler: - test_cases.append(TestVocabCompiler) + test_cases = [TestBrain, TestModules, TestVocabCompiler] if not args.light: test_cases.append(TestG2P) test_cases.append(TestMic) -- cgit v1.3.1