Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheecour committed Jan 26, 2021
1 parent 6ef71ed commit b10c3a9
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions testament/categories.nim
Original file line number Diff line number Diff line change
Expand Up @@ -697,18 +697,13 @@ proc processCategory(r: var TResults, cat: Category,
of "megatest":
runJoinedTest(r, cat, testsDir)
else:
echo "D20210126T094721"
echo testsDir &.? cat.string
var testsRun = 0
var files: seq[string]
for file in walkDirRec(testsDir &.? cat.string):
if isTestFile(file): files.add file
files.sort # give reproducible order
echo (files,)

for i, name in files:
var test = makeTest(name, options, cat)
echo (test,)
if runJoinableTests or not isJoinableSpec(test.spec) or cat.string in specialCategories:
discard "run the test"
else:
Expand Down

0 comments on commit b10c3a9

Please sign in to comment.