From ec658101493c5efb30ac09567737657f5f7fc9f3 Mon Sep 17 00:00:00 2001 From: Kyle King Date: Thu, 6 Jun 2024 22:11:17 -0400 Subject: [PATCH] fix: shorten main task list --- calcipy/tasks/all_tasks.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/calcipy/tasks/all_tasks.py b/calcipy/tasks/all_tasks.py index 75e5449b..35e9a8c5 100644 --- a/calcipy/tasks/all_tasks.py +++ b/calcipy/tasks/all_tasks.py @@ -78,18 +78,18 @@ def with_progress(items: Any, offset: int = 0) -> TaskList: lint.fix, types.mypy, types.basedpyright, - nox.noxfile.with_kwargs(session='tests'), # pyright: ignore[reportFunctionMemberAccess] - lint.pre_commit.with_kwargs(no_update=True), # pyright: ignore[reportFunctionMemberAccess] - tags.collect_code_tags, - cl.write, - pack.lock, test.coverage, + cl.write, doc.build, - stale.check_for_stale_packages, ] _OTHER_TASKS = [ + lint.pre_commit.with_kwargs(no_update=True), # pyright: ignore[reportFunctionMemberAccess] lint.pylint, + nox.noxfile.with_kwargs(session='tests'), # pyright: ignore[reportFunctionMemberAccess] pack.check_licenses, + pack.lock, + stale.check_for_stale_packages, + tags.collect_code_tags, test.step, test.check, # Expected to fail for calcipy ]