(directory, config)
| 100 | running_in_ci, reason=f"This test can't run on CI due to: {reason}") |
| 101 | |
| 102 | def write_config(directory, config): |
| 103 | config_path = directory / "config.yml" |
| 104 | with open(config_path, 'w') as outfile: |
| 105 | yaml.dump(config, outfile) |
| 106 | return config_path |
| 107 | |
| 108 | |
| 109 | def start_cloudflared(directory, config, cfd_args=["run"], cfd_pre_args=["tunnel"], new_process=False, |
no outgoing calls
searching dependent graphs…