Skip to content

Commit

Permalink
Remove flake8 checks for the moment
Browse files Browse the repository at this point in the history
  • Loading branch information
genzgd committed Apr 2, 2024
1 parent deabd1c commit 0813468
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
8 changes: 2 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Check style and linting
.PHONY: check-black check-isort check-flake8 check-mypy lint
.PHONY: check-black check-isort check-mypy lint

check-black:
@echo "--> Running black checks"
Expand All @@ -9,10 +9,6 @@ check-isort:
@echo "--> Running isort checks"
@isort --check-only .

check-flake8:
@echo "--> Running flake8 checks"
@flake8 .

check-mypy:
@echo "--> Running mypy checks"
@mypy --exclude dbt/adapters/clickhouse/__init__.py --exclude conftest.py .
Expand All @@ -21,7 +17,7 @@ check-yamllint:
@echo "--> Running yamllint checks"
@yamllint dbt tests .github

lint: check-black check-isort check-flake8 check-mypy check-yamllint
lint: check-black check-isort check-mypy check-yamllint

# Format code
.PHONY: fmt
Expand Down
1 change: 0 additions & 1 deletion dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ black==24.3.0
isort==5.10.1
mypy==0.991
yamllint==1.26.3
flake8==4.0.1
types-requests==2.27.29
agate~=1.7.1
requests~=2.27.1
Expand Down

0 comments on commit 0813468

Please sign in to comment.