framework is required

This commit is contained in:
Aman Gupta
2015-10-07 18:28:57 -07:00
parent 24ec975aa1
commit f49cffeb19

View File

@@ -174,7 +174,7 @@ proc addResult(r: var TResults, test: TTest,
("Skipped", "")
else:
("Failed", "Expected:\n" & expected & "\n\n" & "Gotten:\n" & given)
var p = startProcess("appveyor", args=["AddTest", test.name & test.options, "-FileName", test.cat.string, "-Outcome", outcome, "-ErrorMessage", msg, "-Duration", $(duration*1000).int], options={poStdErrToStdOut, poUsePath, poParentStreams})
var p = startProcess("appveyor", args=["AddTest", test.name & test.options, "-Framework", "nim-testament", "-FileName", test.cat.string, "-Outcome", outcome, "-ErrorMessage", msg, "-Duration", $(duration*1000).int], options={poStdErrToStdOut, poUsePath, poParentStreams})
discard waitForExit(p)
close(p)