don't run megatest in parallel for better error messages

This commit is contained in:
Araq
2018-12-10 17:27:58 +01:00
parent 34815a4697
commit dc604ca762
2 changed files with 4 additions and 1 deletions

View File

@@ -499,7 +499,8 @@ proc testNimblePackages(r: var TResults, cat: Category, filter: PackageFilter) =
# ----------------------------------------------------------------------------
const AdditionalCategories = ["debugger", "examples", "lib", "megatest"]
const AdditionalCategories = ["debugger", "examples", "lib"]
#, "megatest"]
proc `&.?`(a, b: string): string =
# candidate for the stdlib?

View File

@@ -536,6 +536,8 @@ proc main() =
var r = initResults()
case action
of "all":
processCategory(r, Category"megatest", p.cmdLineRest.string, testsDir, runJoinableTests = false)
var myself = quoteShell(findExe("testament" / "tester"))
if targetsStr.len > 0:
myself &= " " & quoteShell("--targets:" & targetsStr)