Separated test suites for travis

This commit is contained in:
Felix Krause 2016-10-09 16:10:11 +02:00
parent 98c16afb47
commit fa14a11957
2 changed files with 16 additions and 1 deletions

View File

@ -37,7 +37,12 @@ install:
before_script:
- export PATH="nim-$BRANCH/bin${PATH:+:$PATH}"
script:
- nim tests
- nim lexerTests
- nim parserTests
- nim jsonTests
- nim domTests
- nim serializationTests
- nim quickstartTests
cache:
directories:
- nim-master

View File

@ -18,6 +18,16 @@ task parserTests, "Run parser tests":
--verbosity:0
setCommand "c", "test/tparser"
task jsonTests, "Run JSON tests":
--r
--verbosity:0
setCommand "c", "test/tjson"
task domTests, "Run DOM tests":
--r
--verbosity:0
setCommand "c", "test/tdom"
task serializationTests, "Run serialization tests":
--r
--verbosity:0