Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 326359e

Browse files
committed
lint task: don't run sphinx
1 parent ab3c226 commit 326359e

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

tasks.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,18 @@ def deploy_docs(c):
6565
call(isort, check=True),
6666
call(flake8),
6767
call(mypy),
68-
sphinx,
6968
]
7069
)
7170
def lint(c):
7271
pass
7372

7473

74+
@task(
75+
pre=[
76+
call(sphinx)
77+
]
78+
79+
7580
@task
7681
def safety_check(c):
7782
c.run("safety check")

0 commit comments

Comments
 (0)