diff options
author | Araq <rumpf_a@web.de> | 2018-12-11 16:42:13 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-12-11 21:23:25 +0100 |
commit | 01892eee4b6d29cfa137759a76b94b54b70c0a1d (patch) | |
tree | b30f843772bcdfb13a719593f31fc93569af5b2d /testament | |
parent | 8aa4b6b5528956522115531b74a318a255135946 (diff) | |
download | Nim-01892eee4b6d29cfa137759a76b94b54b70c0a1d.tar.gz |
don't skip tests that really were not joined
Diffstat (limited to 'testament')
-rw-r--r-- | testament/categories.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testament/categories.nim b/testament/categories.nim index c1d658537..a72602217 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -646,7 +646,7 @@ proc processCategory(r: var TResults, cat: Category, options, testsDir: string, var testsRun = 0 for name in os.walkFiles("tests" & DirSep &.? cat.string / "t*.nim"): var test = makeTest(name, options, cat) - if runJoinableTests or not isJoinableSpec(test.spec): + if runJoinableTests or not isJoinableSpec(test.spec) or cat.string in specialCategories: discard "run the test" else: test.spec.err = reJoined |