File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 99import rich_click as click
1010from bx_py_utils .path import assert_is_file
1111from 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
1313from cli_base .cli_tools .version_info import print_version
1414from rich .console import Console
1515from 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 ):
You can’t perform that action at this time.
0 commit comments