()
| 22 | """ |
| 23 | @staticmethod |
| 24 | def build_telemetry_client(): |
| 25 | import mssqlcli.telemetry as telemetry # pylint: disable=import-outside-toplevel |
| 26 | return telemetry |
| 27 | |
| 28 | @unittest.skipUnless('MSSQL_CLI_TELEMETRY_OPTOUT' in os.environ.keys() and |
| 29 | os.environ['MSSQL_CLI_TELEMETRY_OPTOUT'].lower() != 'true', |
no outgoing calls
no test coverage detected