macos.py 244 B

12345678910111213
  1. import platform
  2. from milc import cli
  3. from .check import CheckStatus
  4. def os_test_macos():
  5. """Run the Mac specific tests.
  6. """
  7. cli.log.info("Detected {fg_cyan}macOS %s{fg_reset}.", platform.mac_ver()[0])
  8. return CheckStatus.OK