Skip to content

Commit

Permalink
typos in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
sdebruyn committed May 21, 2022
1 parent dab4990 commit e523e2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ linecheck: ## Checks for all Python lines 100 characters or more
find dbt -type f -name "*.py" -exec grep -I -r -n '.\{100\}' {} \;

.PHONY: unit
unit: ## Runs unit tests with py38.
unit: ## Runs unit tests.
@\
tox -- -v test/unit

.PHONY: test
test: ## Runs unit tests with py38 and code checks against staged changes.
test: ## Runs unit tests and code checks against staged changes.
@\
tox -- -v test/unit; \
pre-commit run black-check --hook-stage manual | grep -v "INFO"; \
Expand Down

0 comments on commit e523e2d

Please sign in to comment.