Skip to content

Commit

Permalink
skip tester html on travis/appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm1 committed Oct 7, 2015
1 parent 582c505 commit 6457e8f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion koch.nim
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,8 @@ proc tests(args: string) =
exec "nim c --lib:lib -d:release --opt:speed compiler/nim.nim"
let tester = quoteShell(getCurrentDir() / "tests/testament/tester".exe)
let success = tryExec tester & " " & (args|"all")
exec tester & " html"
if not existsEnv("TRAVIS") and not existsEnv("APPVEYOR"):
exec tester & " html"
if not success:
quit("tests failed", QuitFailure)

Expand Down

0 comments on commit 6457e8f

Please sign in to comment.