Skip to content

Commit

Permalink
Add doctest target in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxcode123 committed Feb 14, 2024
1 parent 24a53f5 commit 7905173
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
PY_FILES := $(shell find src/ -name '*.py')

all:
echo $(SRC)

install-package-builder:
$(PIP) install --upgrade build
Expand All @@ -11,6 +15,9 @@ install-local-package:
test-package:
$(INTERPRETER) -m unittest discover -v src/property_utils/tests/

doctest-package:
$(INTERPRETER) -m doctest $(PY_FILES)

build-package:
$(INTERPRETER) -m build

Expand Down

0 comments on commit 7905173

Please sign in to comment.