Skip to content

Commit

Permalink
Update makefile and remove pdm stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
mbsantiago committed Jun 6, 2024
1 parent 4fd5ceb commit fb66c2a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2,390 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fmt: ## Format code using black & isort.
$(ENV_PREFIX)ruff format $(PROJECT_NAME)/
$(ENV_PREFIX)ruff format tests/

.PHONY: lint-mypy
.PHONY: lint-pyright
lint-pyright:
$(ENV_PREFIX)pyright $(PROJECT_NAME)/

Expand All @@ -36,7 +36,7 @@ lint-ruff:
$(ENV_PREFIX)ruff check tests/

.PHONY: lint
lint: lint-mypy lint-ruff
lint: lint-pyright lint-ruff

.PHONY: test-watch
test-watch: ## Run tests and generate coverage report.
Expand Down Expand Up @@ -66,9 +66,13 @@ clean: ## Clean unused files.
@find src/ -name '__pycache__' -exec rm -rf {} \;
@find src/ -name 'Thumbs.db' -exec rm -f {} \;
@find src/ -name '*~' -exec rm -f {} \;
@rm -rf __pycache__
@rm -rf .cache
@rm -rf .mypy_cache
@rm -rf .ruff_cache
@rm -rf .virtual_documents
@rm -rf .ipynb_checkpoints
@rm -rf .pytest_cache

.PHONY: clean-build
clean-build:
Expand Down
Loading

0 comments on commit fb66c2a

Please sign in to comment.