(config)
| 32 | |
| 33 | |
| 34 | def persist_origin_cert(config): |
| 35 | origincert = get_env("COMPONENT_TESTS_ORIGINCERT") |
| 36 | path = config["origincert"] |
| 37 | with open(path, 'w') as outfile: |
| 38 | outfile.write(origincert) |
| 39 | return path |
| 40 | |
| 41 | |
| 42 | @retry(stop_max_attempt_number=MAX_RETRIES, wait_fixed=BACKOFF_SECS * 1000) |