diff options
author | narimiran <narimiran@disroot.org> | 2019-09-30 18:20:53 +0200 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2019-10-02 12:35:18 +0200 |
commit | 032c3b77db44908522ecdc47466ed9f898ba0194 (patch) | |
tree | 4da7747ccdf5c14c97f76f915bdb5006646587af | |
parent | 0d94ee15c0ab07057dc9a0915d182917f3653c66 (diff) | |
download | Nim-032c3b77db44908522ecdc47466ed9f898ba0194.tar.gz |
test more packages
-rw-r--r-- | testament/important_packages.nim | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/testament/important_packages.nim b/testament/important_packages.nim index 5455b5fa4..9c145a2f7 100644 --- a/testament/important_packages.nim +++ b/testament/important_packages.nim @@ -5,9 +5,11 @@ 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 "ast_pattern_matching", "nim c -r --oldgensym:on tests/test1.nim" +pkg "asyncmysql", "", true pkg "bigints" pkg "binaryheap", "nim c -r binaryheap.nim" pkg "blscurve", "", true @@ -18,6 +20,7 @@ pkg "chroma" pkg "chronicles", "nim c -o:chr -r chronicles.nim", true pkg "chronos" pkg "cligen", "nim c -o:cligenn -r cligen.nim" +pkg "coco", "", true pkg "combparser" pkg "compactdict" pkg "comprehension", "", false, "https://github.com/alehander42/comprehension" @@ -25,12 +28,14 @@ pkg "criterion" pkg "dashing", "nim c tests/functional.nim" pkg "docopt" pkg "easygl", "nim c -o:egl -r src/easygl.nim", true, "https://github.com/jackmott/easygl" +pkg "elvis" pkg "fragments", "nim c -r fragments/dsl.nim" pkg "gara" pkg "glob" pkg "gnuplot" # pkg "godot", "nim c -r godot/godot.nim" # not yet compatible with Nim 0.19 pkg "hts", "nim c -o:htss -r src/hts.nim" +pkg "illwill", "nimble examples" pkg "inim" pkg "itertools", "nim doc src/itertools.nim" pkg "iterutils" @@ -44,7 +49,6 @@ 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/testapi.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 @@ -56,6 +60,7 @@ pkg "nimpy", "nim c -r tests/nimfrompy.nim" pkg "nimquery" pkg "nimsl", "", true pkg "nimsvg" +pkg "nimterop", "", true pkg "nimx", "nim c --threads:on test/main.nim", true pkg "norm", "nim c -r tests/tsqlite.nim", true pkg "npeg" @@ -63,7 +68,11 @@ pkg "ormin", "nim c -o:orminn ormin.nim", true pkg "parsetoml" pkg "patty" pkg "plotly", "nim c --oldgensym:on examples/all.nim", true +pkg "pnm" +pkg "polypbren" pkg "protobuf", "nim c -o:protobuff -r src/protobuf.nim", true +pkg "rbtree" +pkg "react", "nimble example" pkg "regex", "nim c src/regex", true pkg "result", "nim c -r result.nim" pkg "rosencrantz", "nim c -o:rsncntz -r rosencrantz.nim" @@ -73,13 +82,14 @@ pkg "snip", "", false, "https://github.com/genotrance/snip" pkg "stint", "nim c -o:stintt -r stint.nim" pkg "strunicode", "nim c -r src/strunicode.nim", true pkg "telebot", "nim c -o:tbot --oldgensym:on -r telebot.nim", true +pkg "tempdir" +pkg "tensordsl", "nim c -r tests/tests.nim", false, "https://krux02@bitbucket.org/krux02/tensordslnim.git" pkg "tiny_sqlite" pkg "unicodedb" pkg "unicodeplus", "", true pkg "unpack" -pkg "with" # pkg "winim", "", true +pkg "with" pkg "ws" pkg "yaml" pkg "zero_functional", "nim c -r test.nim" -pkg "tensordsl", "nim c -r tests/tests.nim", false, "https://krux02@bitbucket.org/krux02/tensordslnim.git" |