Get the paths to test TLS certificates.
()
| 93 | |
| 94 | |
| 95 | def example_tls_certs(): |
| 96 | """Get the paths to test TLS certificates.""" |
| 97 | return { |
| 98 | "root_cert": read_flight_resource("root-ca.pem"), |
| 99 | "certificates": [ |
| 100 | flight.CertKeyPair( |
| 101 | cert=read_flight_resource("cert0.pem"), |
| 102 | key=read_flight_resource("cert0.key"), |
| 103 | ), |
| 104 | flight.CertKeyPair( |
| 105 | cert=read_flight_resource("cert1.pem"), |
| 106 | key=read_flight_resource("cert1.key"), |
| 107 | ), |
| 108 | ] |
| 109 | } |
| 110 | |
| 111 | |
| 112 | def simple_ints_table(): |
no test coverage detected