Skip to content

Commit c72d1bf

Browse files
committed
Include examples in Makefile
1 parent 2c5bb21 commit c72d1bf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ check: check-pylint check-mypy check-black
1010

1111
.PHONY: check-pylint
1212
check-pylint:
13-
$(PYTHON) -m pylint src
13+
$(PYTHON) -m pylint src examples
1414

1515
.PHONY: check-mypy
1616
check-mypy:
17-
$(PYTHON) -m mypy src
17+
$(PYTHON) -m mypy src examples
1818

1919
.PHONY: check-black
2020
check-black:
21-
$(PYTHON) -m black --check $(BLACK_OPTIONS) src --exclude '/bindings\.py'
21+
$(PYTHON) -m black --check $(BLACK_OPTIONS) src examples --exclude '/bindings\.py'
2222

2323
.PHONY: format
2424
format:
25-
$(PYTHON) -m black $(BLACK_OPTIONS) src --exclude '/bindings\.py'
25+
$(PYTHON) -m black $(BLACK_OPTIONS) src examples --exclude '/bindings\.py'
2626

2727
.PHONY: build
2828
build:

0 commit comments

Comments
 (0)