diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-02-07 07:37:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 16:37:40 +0100 |
commit | 1f725f1d7e05c28a8465b55b65a538408707e3e3 (patch) | |
tree | fc8c66988e5c983fe4c13e4ebf5a8a1caa485a16 /tools/ci_testresults.nim | |
parent | 79ec8c257183e01c01811a34e3930de7814756fb (diff) | |
download | Nim-1f725f1d7e05c28a8465b55b65a538408707e3e3.tar.gz |
miscellaneous bug fixes (part 3) (#13304)
* fix deprecation; fix indentation * git clone: use -q * fix Warning: pragma before generic parameter list is deprecated; fix typo * bugfix: sysTypeFromName("float64") was never cached
Diffstat (limited to 'tools/ci_testresults.nim')
-rw-r--r-- | tools/ci_testresults.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ci_testresults.nim b/tools/ci_testresults.nim index 3201606d7..8c407d6d9 100644 --- a/tools/ci_testresults.nim +++ b/tools/ci_testresults.nim @@ -2,7 +2,7 @@ import os, json, sets, strformat -const skip = toSet(["reDisabled", "reIgnored", "reSuccess", "reJoined"]) +const skip = toHashSet(["reDisabled", "reIgnored", "reSuccess", "reJoined"]) when isMainModule: for fn in walkFiles("testresults/*.json"): |