From 3d5d6931f01550cd384805fd5c7474eaabc2c962 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=B8is=C3=A6ther=20Rasch?= Date: Wed, 15 Nov 2017 17:25:48 +0100 Subject: [PATCH] Appveyor thttpclient (#6744) * App option value for disabling tests for AppVeyor * Disable thttpclient on AppVeyor --- tests/stdlib/thttpclient.nim | 1 + tests/testament/specs.nim | 3 +++ 2 files changed, 4 insertions(+) diff --git a/tests/stdlib/thttpclient.nim b/tests/stdlib/thttpclient.nim index 54588d3f0b..fff02722a9 100644 --- a/tests/stdlib/thttpclient.nim +++ b/tests/stdlib/thttpclient.nim @@ -3,6 +3,7 @@ discard """ exitcode: 0 output: "OK" disabled: "travis" + disabled: "appveyor" """ import strutils diff --git a/tests/testament/specs.nim b/tests/testament/specs.nim index e5506e7962..dcf5f28310 100644 --- a/tests/testament/specs.nim +++ b/tests/testament/specs.nim @@ -13,6 +13,7 @@ import parseutils, strutils, os, osproc, streams, parsecfg var compilerPrefix* = "compiler" / "nim " let isTravis = existsEnv("TRAVIS") +let isAppVeyor = existsEnv("APPVEYOR") proc cmdTemplate*(): string = compilerPrefix & "$target --lib:lib --hints:on -d:testing $options $file" @@ -178,6 +179,8 @@ proc parseSpec*(filename: string): TSpec = when defined(posix): result.err = reIgnored of "travis": if isTravis: result.err = reIgnored + of "appveyor": + if isAppVeyor: result.err = reIgnored else: raise newException(ValueError, "cannot interpret as a bool: " & e.value) of "cmd":