Skip to content

Commit

Permalink
Use milc.subcommand.config instead of qmk.cli.config (qmk#13002)
Browse files Browse the repository at this point in the history
* Use milc.subcommand.config instead

* pyformat

* remove the config test
  • Loading branch information
skullydazed authored May 25, 2021
1 parent bc67ca6 commit aa97f52
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 123 deletions.
2 changes: 1 addition & 1 deletion lib/python/qmk/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def _broken_module_imports(requirements):
from . import chibios # noqa
from . import clean # noqa
from . import compile # noqa
from . import config # noqa
from milc.subcommand import config # noqa
from . import docs # noqa
from . import doctor # noqa
from . import fileformat # noqa
Expand Down
116 changes: 0 additions & 116 deletions lib/python/qmk/cli/config.py

This file was deleted.

6 changes: 0 additions & 6 deletions lib/python/qmk/tests/test_cli_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,6 @@ def test_flash_bootloaders():
check_returncode(result, [1])


def test_config():
result = check_subcommand('config')
check_returncode(result)
assert 'general.color' in result.stdout


def test_kle2json():
result = check_subcommand('kle2json', 'lib/python/qmk/tests/kle.txt', '-f')
check_returncode(result)
Expand Down

0 comments on commit aa97f52

Please sign in to comment.