diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-09-03 18:43:57 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-09-03 18:43:57 +0200 |
commit | 07a986afa169c6277a1b7c1be0f49b29b5ed228a (patch) | |
tree | ccee16313792c598dac24e0d811fb1745c6fbc2c /testament | |
parent | ea1a26294f040d6546b9d4b7e989561d82c32d9e (diff) | |
download | Nim-07a986afa169c6277a1b7c1be0f49b29b5ed228a.tar.gz |
disable IC and the SQLite dependency for version 1
Diffstat (limited to 'testament')
-rw-r--r-- | testament/categories.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testament/categories.nim b/testament/categories.nim index d5cf79e3a..6e885966e 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -658,7 +658,8 @@ proc processCategory(r: var TResults, cat: Category, compileRodFiles(r, cat, options) runRodFiles(r, cat, options) of "ic": - icTests(r, testsDir, cat, options) + when false: + icTests(r, testsDir, cat, options) of "js": # only run the JS tests on Windows or Linux because Travis is bad # and other OSes like Haiku might lack nodejs: |