summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2015-03-06 23:24:56 +0100
committerAndreas Rumpf <rumpf_a@web.de>2015-03-06 23:24:56 +0100
commit3b86c897a01bb4e94b8212d340cce4fe9101c5c8 (patch)
treef55d3f5dd825a808b9f4b643ad0579baab7a9fff
parent2c0dfcb302b20674da7a6be1752c4b3db6ffb60d (diff)
parentdf0afd87520f3dd640587cb2dad9c94cdf487d02 (diff)
downloadNim-3b86c897a01bb4e94b8212d340cce4fe9101c5c8.tar.gz
Merge pull request #2282 from reactormonk/disable-nimble-tests
fixed a bug in nimble tests - disable for now
-rw-r--r--tests/testament/categories.nim5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/testament/categories.nim b/tests/testament/categories.nim
index ab1e46d6f..323abd768 100644
--- a/tests/testament/categories.nim
+++ b/tests/testament/categories.nim
@@ -302,8 +302,7 @@ proc testNimblePackages(r: var TResults, cat: Category, filter: PackageFilter) =
         continue
 
       let
-        buildPath = getPackageDir(name)[0.. -3]
-      let
+        buildPath = getPackageDir(name).strip
         buildProcess = startProcess(nimbleExe, buildPath, ["build"])
         buildStatus = waitForExitEx(buildProcess)
       buildProcess.close
@@ -318,7 +317,7 @@ proc testNimblePackages(r: var TResults, cat: Category, filter: PackageFilter) =
 
 # ----------------------------------------------------------------------------
 
-const AdditionalCategories = ["debugger", "examples", "lib", "nimble-core"]
+const AdditionalCategories = ["debugger", "examples", "lib"]
 
 proc `&.?`(a, b: string): string =
   # candidate for the stdlib?