summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@gmail.com>2015-10-26 21:10:21 +0100
committerDominik Picheta <dominikpicheta@gmail.com>2015-10-27 11:06:00 +0100
commit82f3cab1ac02f482dc3de3a41099e1ec0a0819a7 (patch)
tree4f8f1980e5ed384738f4a9469139af85574807f8 /tests
parenta82b9cbda320be219f426705494a357a45bfa2b2 (diff)
downloadNim-82f3cab1ac02f482dc3de3a41099e1ec0a0819a7.tar.gz
Improved postgres docs and added untestable tests.
Diffstat (limited to 'tests')
-rw-r--r--tests/testament/categories.nim3
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)