-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMakefile
40 lines (33 loc) · 1.03 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
.PHONY: help
help: ## Show the help.
@echo "Usage: make <target>"
@echo ""
@echo "Targets:"
@fgrep "##" Makefile | fgrep -v fgrep
.PHONY: show
show: ## Show the current environment.
@echo "Current environment:"
@echo "Running using $(VIRTUAL_ENV)"
@$(VIRTUAL_ENV)/bin/python -V
@$(VIRTUAL_ENV)/bin/python -m site
.PHONY: fmt
fmt: ## Format code using black & isort.
isort sqlelf/ benchmarks/ tests/ tools/
black sqlelf/ benchmarks/ tests/ tools/
.PHONY: lint
lint: ## Run pep8, black, mypy linters.
flake8 sqlelf/ benchmarks/ tests/ tools/
isort --check sqlelf/ benchmarks/ tests/ tools/
black --check sqlelf/ benchmarks/ tests/ tools/
pyright
mypy --strict --install-types --non-interactive sqlelf tests tools
.PHONY: test
test: ## Run pytest primarily.
pytest
pytest -m "slow"
.PHONY: coverage
coverage:
coverage run -m pytest
.PHONY: vendor
vendor: ## Update third-party dependencies.
copybara copy.bara.sky vendor_pyelftools --folder-dir ./sqlelf/_vendor