diff options
Diffstat (limited to 'testament/categories.nim')
-rw-r--r-- | testament/categories.nim | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/testament/categories.nim b/testament/categories.nim index 9b0de13ac..e1db9aa10 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -34,7 +34,7 @@ const "nimble-packages-2", "niminaction", "threads", - "untestable", + "untestable", # see trunner_special "testdata", "nimcache", "coroutines", @@ -711,8 +711,9 @@ proc processCategory(r: var TResults, cat: Category, of "ic": icTests(r, testsDir, cat, options) of "untestable": - # We can't test it because it depends on a third party. - discard # TODO: Move untestable tests to someplace else, i.e. nimble repo. + # These require special treatment e.g. because they depend on a third party + # dependency; see `trunner_special` which runs some of those. + discard else: handled = false if not handled: |