diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2024-06-18 19:43:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 19:43:46 +0800 |
commit | c58b6e8df895c2f7d3f56a2bb0ef9a778f7a4269 (patch) | |
tree | a0ba3a307242958671f7b9a47ba1211e07a35b30 /testament | |
parent | 128090c593df557c9e7c17e966a735312986a496 (diff) | |
download | Nim-c58b6e8df895c2f7d3f56a2bb0ef9a778f7a4269.tar.gz |
disable dnsclient because it is fragile (#23728)
``` Unhandled exception: /home/runner/work/Nim/Nim/pkgstemp/dnsclient/tests/test1.nim(28, 3) `rr.strings == @["dnsclient.nim"]` [AssertionDefect] [FAILED] query TXT [OK] query MX [OK] query CNAME [OK] query SRV Error: execution of an external program failed: '/home/runner/work/Nim/Nim/pkgstemp/dnsclient/tests/test1' Tip: 2 messages have been suppressed, use --verbose to show them. tools.nim(36) doCmd Error: Execution failed with exit code 1 ... Command: /home/runner/work/Nim/Nim/bin/nim c --noNimblePath -d:NimblePkgVersion=0.3.4 --hints:off -r --path:. /home/runner/work/Nim/Nim/pkgstemp/dnsclient/tests/test1 ```
Diffstat (limited to 'testament')
-rw-r--r-- | testament/important_packages.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testament/important_packages.nim b/testament/important_packages.nim index ac2d133c3..f234b0e87 100644 --- a/testament/important_packages.nim +++ b/testament/important_packages.nim @@ -63,7 +63,7 @@ pkg "criterion", allowFailure = true # needs testing binary pkg "datamancer" pkg "dashing", "nim c tests/functional.nim" pkg "delaunay" -pkg "dnsclient" +pkg "dnsclient", allowFailure = true # super fragile pkg "docopt" pkg "dotenv" # when defined(linux): pkg "drchaos" |