在端点REST API的GoConvey测试期间跳过包含静态内容的某些文件夹

时间:2016-01-15 08:10:19

标签: go goconvey

我有一个public文件夹来提供静态资源。我使用Convey编写了测试来保存此文件夹中的静态内容。

由于在公共文件夹中创建了新文件,它会陷入永无止境的循环中。

integration.go:120: File system state modified, publishing current folders... 1452848214 1452848215

如何跳过此文件夹?我尝试将.goconvey文件添加到ignore但不起作用的文件夹中。

有任何建议,如何跳过观看该文件夹?

1 个答案:

答案 0 :(得分:2)

GoConvey中有一个标志,可以帮助跳过这些文件夹。

goconvey -excludedDirs="public"

https://github.com/smartystreets/goconvey/blob/master/goconvey.go#L44

来源:https://github.com/smartystreets/goconvey/issues/383