summary refs log tree commit diff stats
path: root/testament
diff options
context:
space:
mode:
Diffstat (limited to 'testament')
-rw-r--r--testament/categories.nim3
-rw-r--r--testament/tester.nim2
2 files changed, 4 insertions, 1 deletions
diff --git a/testament/categories.nim b/testament/categories.nim
index 568a13440..d23f3384e 100644
--- a/testament/categories.nim
+++ b/testament/categories.nim
@@ -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?
diff --git a/testament/tester.nim b/testament/tester.nim
index 368c5da6f..29733e45c 100644
--- a/testament/tester.nim
+++ b/testament/tester.nim
@@ -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)