Guard-rspec和ember不能很好地协同工作

时间:2017-08-10 15:08:17

标签: ruby-on-rails rspec guard

Rails 4.2.7 guard-rspec 4.7.3

由于我安装了ember-cli-rails,因此ember app会阻止guard-spec运行并触发数百个错误。 这是一个错误:

Directory: /home/sylvain/dev/placedemarche/marketadmin/tmp/broccoli_merge_trees-output_path-rlX3b4rm.tmp/marketadmin/tests/unit

    is already being watched through: /home/sylvain/dev/placedemarche/marketadmin/tmp/broccoli_persistent_filterbabel__babel_marketadmin-output_path-Nv8C3Z67.tmp/marketadmin/tests/unit

    MORE INFO: https://github.com/guard/listen/wiki/Duplicate-directory-errors
    ** ERROR: directory is already being watched! **

我在护卫文件中尝试了多项内容,甚至删除了所有手表:

guard 'rspec',:cli => "--drb --format progress",all_after_pass: false do
  # ignore /marketadmin/ 
  # watch(%r{^spec/(.+)_spec\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
  # watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  # watch('spec/spec_helper.rb')  { "spec" }

  # # Rails example
  # watch(%r{^app/(.+)\.rb$})                           { |m| "spec/#{m[1]}_spec.rb" }
  # watch(%r{^app/(.*)(\.erb|\.haml)$})                 { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
  # watch(%r{^app/controllers/(.+)_(controller)\.rb$})  { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
  # watch(%r{^spec/support/(.+)\.rb$})                  { "spec" }
  # watch('config/routes.rb')                           { "spec/routing" }
  # watch('app/controllers/application_controller.rb')  { "spec/controllers" }
  # # Capybara request specs
  # watch(%r{^app/views/(.+)/.*\.(erb|haml)$})          { |m| "spec/requests/#{m[1]}_spec.rb" }
end

我尝试了多个版本的ignore,但它仍然失败。

问题基本上是tmp文件夹ember用来生成预览应用程序让警卫变得疯狂。似乎守卫忽略并没有真正让守卫避开文件夹,它仍然扫描它。

如何使防护文件忽略ember文件夹以便我可以恢复rspec-guard?

编辑

我已将护卫文件编辑如下:

guard 'rspec',:cli => "--drb --format progress",all_after_pass: false do
  ignore(%r{^marketadmin/(.+)}) 
end

它仍然失败并出现以下错误(有很多错误我必须将终端内存设置为30 000行,20 000还不够):

18:24:39 - INFO - Guard::RSpec is running
18:24:39 - DEBUG - Hook :start_end executed for Guard::RSpec
D, [2017-08-24T18:25:00.166155 #20128] DEBUG -- : Waiting for processing to start...
18:25:00 - INFO - Guard is now watching at '/home/sylvain/dev/placedemarche'
18:25:00 - DEBUG - Start interactor
        ** ERROR: directory is already being watched! **

        Directory: /home/sylvain/dev/placedemarche/marketadmin/tmp/funnel-input_base_path-WVhWKrYs.tmp

        is already being watched through: /home/sylvain/dev/placedemarche/marketadmin/node_modules/qunit-notifications

        MORE INFO: https://github.com/guard/listen/wiki/Duplicate-directory-errors
        ** ERROR: directory is already being watched! **

        Directory: /home/sylvain/dev/placedemarche/marketadmin/tmp/funnel-input_base_path-ULeE6XMF.tmp

        is already being watched through: /home/sylvain/dev/placedemarche/marketadmin/app

        MORE INFO: https://github.com/guard/listen/wiki/Duplicate-directory-errors

2 个答案:

答案 0 :(得分:2)

正如我在IRC频道中所写的那样,我没有得到,你试图避免使用哪个子文件夹?

如果我在语句ignore(%r{frontend/(.+)})的顶部添加我的保护文件,或者在您的情况ignore(%r{marketadmin/(.+)})中添加保护文件,则它非常成功地忽略了前端应用程序中发生的任何事情。

我的Guardfile看起来像:

guard :rspec, cmd: "bundle exec rspec" do
  require "guard/rspec/dsl"
  dsl = Guard::RSpec::Dsl.new(self)

  # Feel free to open issues for suggestions and improvements

  ignore(%r{frontend/(.+)})
  # RSpec files
  rspec = dsl.rspec
  watch(rspec.spec_helper) { rspec.spec_dir }
...

我没有使用ember的经验,而且你正在使用这种西兰花的东西,也许问题是在那里做的配置?

一个有用的命令可以是:

LISTEN_GEM_DEBUGGING=2 bundle exec guard -d

希望以上有所帮助。 干杯!

更新:检查了您看到的错误,并在安装了创建符号链接的mock之后开始查看broccolli-funnel设置中的错误,并且警卫使用的监听器gem似乎有问题他们,我今天不幸没有时间深入分析...... 也许你可以尝试使用ember离开导轨目录的设置。

答案 1 :(得分:0)

Guard 现在可以指定要监视的目录。如果您只指定您需要的顶级目录,而将 marketadmin 或您的 ember-cli 子目录的名称排除在列表之外,那么它将被忽略:

  directories %w[app config lib spec features]

根据应用程序的设置,您可能需要其他目录,但关键是排除 marketadmin

https://github.com/guard/guard/wiki/Guardfile-DSL---Configuring-Guard#directories