diff --git a/.travis.yml b/.travis.yml index fa7a49f..44b4883 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/config.nims b/config.nims index 5340dbe..57572d2 100644 --- a/config.nims +++ b/config.nims @@ -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