2

我正在尝试设置 Travis 为 Haxe 库运行 munit 测试。它安装依赖项,但在尝试运行第一个测试时失败。任何建议,将不胜感激。

Massive Unit - Copyright 2015 Massive Interactive. Version 2.1.0
   haxe -main TestMain -lib munit -lib hamcrest -cp quick-haxe quick-haxe -cp test -swf-version 11 -swf build/as3_test.swf
/usr/bin/xdg-open: 461: /usr/bin/xdg-open: links2: not found
/usr/bin/xdg-open: 461: /usr/bin/xdg-open: links: not found
/usr/bin/xdg-open: 461: /usr/bin/xdg-open: lynx: not found
/usr/bin/xdg-open: 461: /usr/bin/xdg-open: w3m: not found
xdg-open: no method available for opening 'http://localhost:2000/tmp/runner/index.html'
Error: Error running http://localhost:2000/tmp/runner/index.html

在这里回购:https ://github.com/ramchale/quick-haxe

特拉维斯在这里报告:https ://travis-ci.org/ramchale/quick-haxe

4

1 回答 1

1

munit 测试运行器正在尝试在浏览器中运行您的测试,它通过open在 unix 系统上调用该工具来启动它。Travis 支持无头浏览器,但 munit 不支持(AFAIK)。

您应该能够很好地运行系统测试(hxcpp,neko),并且对于实用程序库,它会给您一定程度的“事情正在运行”的信心。

Haxe 编译器通过 SauceLabs 运行 JS/Flash 测试,但不使用 munit。

于 2015-06-07T15:02:35.060 回答