mirror of
https://github.com/status-im/nim-stew.git
synced 2025-01-09 11:45:42 +00:00
805ef4f1b2
* fix defect raising without `$` * doc updates * better `?` that doesn't cause raises effect (it should, because of FieldError but...)
15 lines
477 B
Nim
15 lines
477 B
Nim
mode = ScriptMode.Verbose
|
|
|
|
packageName = "stew"
|
|
version = "0.1.0"
|
|
author = "Status Research & Development GmbH"
|
|
description = "Backports, standard library candidates and small utilities that don't yet deserve their own repository"
|
|
license = "Apache License 2.0"
|
|
skipDirs = @["tests"]
|
|
|
|
requires "nim >= 1.2.0"
|
|
|
|
task test, "Run all tests":
|
|
exec "nim c -r --threads:off tests/all_tests"
|
|
exec "nim c -r --threads:on -d:nimTypeNames tests/all_tests"
|