有几个例子比较慢,过滤掉如下:
RSpec.configure do |c|
c.filter_run_excluding slow: true
end
describe 'get averages but takes a long time', slow: true do
it 'gets average foo' do
....
end
it 'gets average bar' do
...
end
end
这很好用,并且不会运行缓慢的测试。
rspec
但是从命令行运行所有示例的 RSpec 命令是什么,包括被过滤掉的慢的?