Skip to content

Commit 842be1a

Browse files
committed
Fix nox CLI call
1 parent c02011d commit 842be1a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,7 @@ See also git tags: https://github.com/jedie/manageprojects/tags
350350
[comment]: <> (✂✂✂ auto generated history start ✂✂✂)
351351

352352
* [v0.21.2](https://github.com/jedie/manageprojects/compare/v0.21.1...v0.21.2)
353+
* 2025-03-11 - Fix nox CLI call
353354
* 2025-03-11 - Update requirements and replace tox with nox
354355
* [v0.21.1](https://github.com/jedie/manageprojects/compare/v0.21.0...v0.21.1)
355356
* 2025-01-31 - Use cli_tools.path_utils.which

manageprojects/cli_dev/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import rich_click as click
1010
from bx_py_utils.path import assert_is_file
1111
from cli_base.autodiscover import import_all_files
12-
from cli_base.cli_tools.dev_tools import run_coverage, run_tox, run_unittest_cli
12+
from cli_base.cli_tools.dev_tools import run_coverage, run_nox, run_unittest_cli
1313
from cli_base.cli_tools.version_info import print_version
1414
from rich.console import Console
1515
from rich.traceback import install as rich_traceback_install
@@ -76,7 +76,7 @@ def main():
7676
command = sys.argv[1]
7777
command_map = {
7878
'test': run_unittest_cli,
79-
'tox': run_tox,
79+
'nox': run_nox,
8080
'coverage': run_coverage,
8181
}
8282
if real_func := command_map.get(command):

0 commit comments

Comments
 (0)