自动测试忽略“集成”下的一些文件目录

发布于 2025-01-04 15:37:09 字数 450 浏览 0 评论 0原文

我正在使用 Capybara 和 rspec 进行集成测试。 我创建了 2 个文件,并将其放在 spec/integration 文件夹下。

/spec/integration/
                 login_integration_spec.rb
                 registration_integration_spec.rb

自动测试还配置为使对此文件夹中的文件所做的更改生效

  autotest.add_mapping(%r%^spec/(integration)/.*rb$%) { |filename, _|
    filename
  }

。问题是仅执行测试文件“registration_integration_spec.rb”。 你知道我如何告诉自动测试考虑整个目录吗?

谢谢。

I am using Capybara and rspec for integration testing.
I have created 2 files that I put under the spec/integration folder.

/spec/integration/
                 login_integration_spec.rb
                 registration_integration_spec.rb

Autotest is also configured to take in effect the changes made in the files from this folder

  autotest.add_mapping(%r%^spec/(integration)/.*rb$%) { |filename, _|
    filename
  }

The problem is that only the test file "registration_integration_spec.rb" is executed.
Do you know how I can tell autotest to take in consideration the whole directory?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抱猫软卧 2025-01-11 15:37:09

没关系,问题是我的自动测试配置文件。
我有这样的:

Autotest.add_hook :initialize do |autotest|
  %w{.git .svn .hg .DS_Store ._* vendor tmp log doc}.each do |exception|
    autotest.add_exception(exception)
  end
end

我刚刚从例外列表中删除了日志文件夹。

Nevermind, the problem was my autotest config file.
I had this:

Autotest.add_hook :initialize do |autotest|
  %w{.git .svn .hg .DS_Store ._* vendor tmp log doc}.each do |exception|
    autotest.add_exception(exception)
  end
end

I just removed the log folder from the exceptions list.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文