diff options
author | narimiran <narimiran@disroot.org> | 2019-11-13 16:25:43 +0100 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2019-11-13 16:25:43 +0100 |
commit | a1e7bf81b334c3384e8f5af9d2e244225211b2b2 (patch) | |
tree | 60a54cd0df7592a11f229565d2806cf24c56654b | |
parent | 8394c003008a42990aada0dd75e8b1ed94777da2 (diff) | |
download | Nim-a1e7bf81b334c3384e8f5af9d2e244225211b2b2.tar.gz |
a better way to test Arraymancer
-rw-r--r-- | testament/important_packages.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testament/important_packages.nim b/testament/important_packages.nim index 80315724d..0fd661abf 100644 --- a/testament/important_packages.nim +++ b/testament/important_packages.nim @@ -5,9 +5,8 @@ template pkg(name: string; cmd = "nimble test"; hasDeps = false; url = ""): unty var packages*: seq[tuple[name, cmd: string; hasDeps: bool; url: string]] = @[] -pkg "NimData", "nim c -o:nimdataa src/nimdata.nim", true pkg "argparse" -pkg "arraymancer", "nim c -r src/arraymancer.nim", true +pkg "arraymancer", "nim c tests/tests_cpu.nim", true pkg "ast_pattern_matching", "nim c -r --oldgensym:on tests/test1.nim" pkg "asyncmysql", "", true pkg "bigints" @@ -49,6 +48,7 @@ pkg "neo", "nim c -d:blas=openblas tests/all.nim", true pkg "nicy", "nim c src/nicy.nim" pkg "nigui", "nim c -o:niguii -r src/nigui.nim" pkg "nimcrypto", "nim c -r tests/testall.nim" +pkg "NimData", "nim c -o:nimdataa src/nimdata.nim", true pkg "nimes", "nim c src/nimes.nim", true pkg "nimfp", "nim c -o:nfp -r src/fp.nim", true pkg "nimgame2", "nim c nimgame2/nimgame.nim", true |