Skip to content

Commit

Permalink
fix: shorten main task list
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Jun 7, 2024
1 parent ae1cbe9 commit ec65810
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions calcipy/tasks/all_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
]
Expand Down

0 comments on commit ec65810

Please sign in to comment.