Browse Source

simplify qmk doctor to make room for #11208 (#11242)

pull/11250/head
Zach White 3 years ago
committed by GitHub
parent
commit
bded5f473c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 13 deletions
  1. +17
    -13
      lib/python/qmk/cli/doctor.py

+ 17
- 13
lib/python/qmk/cli/doctor.py View File

@ -281,6 +281,22 @@ def is_executable(command):
return False
def os_tests():
"""Determine our OS and run platform specific tests
"""
platform_id = platform.platform().lower()
if 'darwin' in platform_id or 'macos' in platform_id:
return os_test_macos()
elif 'linux' in platform_id:
return os_test_linux()
elif 'windows' in platform_id:
return os_test_windows()
else:
cli.log.warning('Unsupported OS detected: %s', platform_id)
return CheckStatus.WARNING
def os_test_linux():
"""Run the Linux specific tests.
"""
@ -317,20 +333,8 @@ def doctor(cli):
* [ ] Compile a trivial program with each compiler
"""
cli.log.info('QMK Doctor is checking your environment.')
status = CheckStatus.OK
# Determine our OS and run platform specific tests
platform_id = platform.platform().lower()
if 'darwin' in platform_id or 'macos' in platform_id:
status = os_test_macos()
elif 'linux' in platform_id:
status = os_test_linux()
elif 'windows' in platform_id:
status = os_test_windows()
else:
cli.log.warning('Unsupported OS detected: %s', platform_id)
status = CheckStatus.WARNING
status = os_tests()
cli.log.info('QMK home: {fg_cyan}%s', QMK_FIRMWARE)


Loading…
Cancel
Save