You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
244 B

  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