diff options
Diffstat (limited to 'tests/testament/categories.nim')
-rw-r--r-- | tests/testament/categories.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/testament/categories.nim b/tests/testament/categories.nim index 526ca4d45..762c92792 100644 --- a/tests/testament/categories.nim +++ b/tests/testament/categories.nim @@ -394,6 +394,9 @@ proc processCategory(r: var TResults, cat: Category, options: string, fileGlob: testNimblePackages(r, cat, pfExtraOnly) of "nimble-all": testNimblePackages(r, cat, pfAll) + 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. else: for name in os.walkFiles("tests" & DirSep &.? cat.string / fileGlob): testSpec r, makeTest(name, options, cat) |