(port)
| 3579 | |
| 3580 | |
| 3581 | def start_mongocryptd(port) -> None: |
| 3582 | args = ["mongocryptd", f"--port={port}", "--idleShutdownTimeoutSecs=60"] |
| 3583 | _spawn_daemon(args) |
| 3584 | |
| 3585 | |
| 3586 | @unittest.skipIf(os.environ.get("TEST_CRYPT_SHARED"), "crypt_shared lib is installed") |
no test coverage detected