Skip to content

Commit

Permalink
Remove mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
legoktm committed Feb 21, 2024
1 parent 04c3ef6 commit 3ba89d5
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions proxy/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,9 @@
all: help

.PHONY: lint
lint: check-isort check-black mypy ## Run isort, black and flake8 and mypy
lint: check-isort check-black ## Run isort, black and flake8
@poetry run flake8 securedrop_proxy tests

.PHONY: mypy
mypy: ## Run mypy static type checker
@poetry run mypy --ignore-missing-imports securedrop_proxy

.PHONY: black
black: ## Run black for file formatting
@echo "Running black (may result in changes in your working directory)…"
Expand Down Expand Up @@ -38,7 +34,7 @@ test: ## Runs tests with pytest
@poetry run pytest

.PHONY: check
check: lint test mypy ## Runs all tests and code checkers
check: lint test ## Runs all tests and code checkers

# Explanation of the below shell command should it ever break.
# 1. Set the field separator to ": ##" and any make targets that might appear between : and ##
Expand Down

0 comments on commit 3ba89d5

Please sign in to comment.