github.com/windmilleng/tilt@v0.13.6/integration/tilt_args/Tiltfile (about)

     1  config.define_string_list('resources', args=True)
     2  cfg = config.parse()
     3  config.set_enabled_resources(cfg.get('resources', []))
     4  
     5  # dumb trick - put the args in quotes so that when the test looks for "foo run" or "bar run", they
     6  # match the output of echo, and not Tilt logging the command line
     7  local_resource('foo', 'echo "foo" "run"')
     8  local_resource('bar', 'echo "bar" "run"')