From acdb8c645bff05ec156937766a45eeda7d0da873 Mon Sep 17 00:00:00 2001 From: Alinson S Xavier Date: Wed, 29 Jan 2020 15:23:31 -0600 Subject: [PATCH] Makefile: Add 'docs' target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e96c7db..1c8ca2d 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,12 @@ PYTEST_ARGS := -W ignore::DeprecationWarning -vv +docs: + mkdocs build + test: pytest $(PYTEST_ARGS) test-watch: pytest-watch -- $(PYTEST_ARGS) -.PHONY: test test-watch +.PHONY: test test-watch docs