testament: change how JS tests are disable for travis on OSX

This commit is contained in:
Andreas Rumpf
2018-08-13 12:51:19 +02:00
parent 7f49364fd0
commit 81645deb87
2 changed files with 5 additions and 3 deletions

View File

@@ -484,7 +484,9 @@ proc processCategory(r: var TResults, cat: Category, options: string) =
of "js":
# only run the JS tests on Windows or Linux because Travis is bad
# and other OSes like Haiku might lack nodejs:
when defined(linux) or defined(windows):
if not defined(linux) and isTravis:
discard
else:
jsTests(r, cat, options)
of "dll":
dllTests(r, cat, options)

View File

@@ -12,8 +12,8 @@ import parseutils, strutils, os, osproc, streams, parsecfg
var compilerPrefix* = "compiler" / "nim "
let isTravis = existsEnv("TRAVIS")
let isAppVeyor = existsEnv("APPVEYOR")
let isTravis* = existsEnv("TRAVIS")
let isAppVeyor* = existsEnv("APPVEYOR")
proc cmdTemplate*(): string =
compilerPrefix & "$target --lib:lib --hints:on -d:testing $options $file"