summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.builds/archlinux.yml1
-rwxr-xr-xcheck5
2 files changed, 4 insertions, 2 deletions
diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml
index 487a7ef..44ab1c0 100644
--- a/.builds/archlinux.yml
+++ b/.builds/archlinux.yml
@@ -9,7 +9,6 @@ packages:
- python-coverage
- flake8
- python-isort
- - python-doc8
sources:
- https://git.sr.ht/~valhalla/lesana
tasks:
diff --git a/check b/check
index 8001db4..beb841c 100755
--- a/check
+++ b/check
@@ -28,7 +28,10 @@ case $SUBCMD in
"qa")
flake8 --select=E,F,W,C90,E123 --ignore=W503 .
isort --check-only --diff .
- doc8 .
+ if which doc8
+ then
+ doc8 .
+ fi
;;
"typecheck")
mypy lesana