You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
there are two file in my test/integration/default/serverspec/localhost/, database_spec.rb and webserver_spec.rb, but only webserver_spec.rb was uploaded to instance, after some dig, I find this code
def local_suite_files
glob = File.join(config[:test_base_path], config[:suite_name], "*/**/*")
Dir.glob(glob).reject do |f|
f[/(data|data_bags|environments|nodes|roles)/] || File.directory?(f)
end
end
end
seems it filter database_spec.rb file because it is beginning with data, this may be a bug
The text was updated successfully, but these errors were encountered:
there are two file in my
test/integration/default/serverspec/localhost/
,database_spec.rb
andwebserver_spec.rb
, but onlywebserver_spec.rb
was uploaded to instance, after some dig, I find this codeseems it filter
database_spec.rb
file because it is beginning withdata
, this may be a bugThe text was updated successfully, but these errors were encountered: