Sha256: 96220187b97c0f540d8b6811c0076cdfc4e1aba2c4eae29ba110de98ed1ca72c
Contents?: true
Size: 1.17 KB
Versions: 20
Compression:
Stored size: 1.17 KB
Contents
# You can use ERB here. # Which server to use. server_host: <%= options[:connect] %> <%- if options[:user] -%> server_user: <%= options[:user] %> <%- else -%> # server_user: <%= Testbot::DEFAULT_USER %> <%- end -%> # Project prefix. Used for prefixing project files # so that you can run multiple projects in the same testbot network. <%- if options[:project] %> project: <%= options[:project] %> <%- else -%> # project: <%= Testbot::DEFAULT_PROJECT %> <%- end -%> # RSync settings. The folder where your files are synced to # and then fetched from before running the tests. <%- if options[:rsync_path] -%> rsync_path: <%= options[:rsync_path] %> <%- else -%> # rsync_path: <%= Testbot::DEFAULT_SERVER_PATH %> <%- end -%> <%- if options[:rsync_ignores] -%> rsync_ignores: <%= options[:rsync_ignores] %> <%- else -%> # rsync_ignores: <%- end -%> # To tunnel traffic through SSH <%- if options[:ssh_tunnel] -%> ssh_tunnel: true <%- else -%> # ssh_tunnel: true <%- end -%> # Runner usage. Set to a lower percentage to not use # every available instance or higher to create more # jobs than there are instances. available_runner_usage: 100% # Enable more logging from the requester # logging: true
Version data entries
20 entries across 20 versions & 2 rubygems