Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ EASY_INSTALL := $(BIN)/easy_install
RST2HTML := $(PYTHON) $(BIN)/rst2html.py
PDOC := $(PYTHON) $(BIN)/pdoc
PEP8 := $(BIN)/pep8
PEP8RADIUS := $(BIN)/pep8radius
PEP257 := $(BIN)/pep257
PYLINT := $(BIN)/pylint
PYREVERSE := $(BIN)/pyreverse
Expand Down Expand Up @@ -102,7 +103,7 @@ $(DEPENDS_CI): Makefile
.PHONY: .depends-dev
.depends-dev: env Makefile $(DEPENDS_DEV)
$(DEPENDS_DEV): Makefile
$(PIP) install $(PIP_CACHE) --upgrade pygments docutils pdoc pylint wheel
$(PIP) install $(PIP_CACHE) --upgrade pep8radius pygments docutils pdoc pylint wheel
touch $(DEPENDS_DEV) # flag to indicate dependencies are installed

# Documentation ##############################################################
Expand Down Expand Up @@ -155,6 +156,10 @@ pep257: .depends-ci
pylint: .depends-dev
$(PYLINT) $(PACKAGE) --rcfile=.pylintrc

.PHONY: fix
fix: .depends-dev
$(PEP8RADIUS) --docformatter --in-place

# Testing ####################################################################

.PHONY: test
Expand Down