Skip to content

Commit

Permalink
Adds missing references to TEST_DIR
Browse files Browse the repository at this point in the history
  • Loading branch information
schuylermartin45 committed Mar 26, 2024
1 parent 092cd7d commit b443df9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,14 @@ test-cov: ## checks test coverage requirements
$(TEST_DIR) --cov-fail-under=80 --cov-report term-missing

lint: ## runs the linter against the project
pylint --rcfile=.pylintrc $(SRC_DIR)
pylint --rcfile=.pylintrc $(SRC_DIR) $(TEST_DIR)

format: ## runs the code auto-formatter
isort --profile black --line-length=120 $(SRC_DIR)
isort --profile black --line-length=120 $(SRC_DIR) $(TEST_DIR)
black --line-length=120 $(SRC_DIR)

format-docs: ## runs the docstring auto-formatter. Note this requires manually installing `docconvert`
docconvert --in-place --config .docconvert.json $(SRC_DIR)
docconvert --in-place --config .docconvert.json $(SRC_DIR) $(TEST_DIR)

analyze: ## runs static analyzer on the project
mypy --config-file=.mypy.ini --cache-dir=/dev/null $(SRC_DIR)/
mypy --config-file=.mypy.ini --cache-dir=/dev/null $(SRC_DIR) $(TEST_DIR)

0 comments on commit b443df9

Please sign in to comment.