Skip to content

Commit

Permalink
[TravisCI] Test MUnit with retries.
Browse files Browse the repository at this point in the history
Let see if this help reducing the annoyance of MUnit's bug.
Hopefully I or somebody will figure out what is the actual cause...
  • Loading branch information
andyli committed Jun 5, 2014
1 parent 04bcfa9 commit d490d2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/RunTravis.hx
Original file line number Diff line number Diff line change
Expand Up @@ -550,9 +550,9 @@ class RunTravis {
haxelibInstallGit("massiveinteractive", "MassiveUnit", "master", "src", false, "munit");
changeDirectory(Path.join([getHaxelibPath("munit"), "..", "tool"]));
runCommand("haxe", ["build.hxml"]);
haxelibRun(["munit", "test", "-result-exit-code", "-neko"]);
haxelibRun(["munit", "test", "-result-exit-code", "-neko"], true);
changeDirectory("../");
haxelibRun(["munit", "test", "-result-exit-code", "-neko"]);
haxelibRun(["munit", "test", "-result-exit-code", "-neko"], true);
}

static function testFlambe() {
Expand Down

0 comments on commit d490d2d

Please sign in to comment.