Skip to content

Commit 86b7ffe

Browse files
authored
MAKEFILE add a 'make check' target to do isort/black/flake8/mypy/manifest (#86)
1 parent 70e54a4 commit 86b7ffe

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ tests:
99
all_tests:
1010
pytest tests --cov=gql --cov-report=term-missing --run-online -vv
1111

12+
check:
13+
isort --recursive gql tests
14+
black gql tests
15+
flake8 gql tests
16+
mypy gql tests
17+
check-manifest
18+
1219
clean:
1320
find . -name "*.pyc" -delete
1421
find . -name "__pycache__" | xargs -I {} rm -rf {}

0 commit comments

Comments
 (0)