Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news-updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 811e667..3c84413 100644
--- a/Makefile
+++ b/Makefile
@@ -33,3 +33,10 @@ test:
pep8 .
python3 -m nextcloud_news_updater --version
python3 -m unittest
+ #uncomment once mypy works properly
+ # make typecheck
+
+.PHONY: typecheck
+typecheck:
+ python3 -m mypy $(CURDIR)/nextcloud_news_updater --disallow-untyped-defs
+