-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
38 lines (30 loc) · 863 Bytes
/
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
.PHONY: clean format build docs test lint
clean:
@rm -rf build dist .eggs *.egg-info
@rm -rf .benchmarks .coverage coverage.xml htmlcov report.xml
@rm -rf .mypy_cache
@rm -rf .ruff_cache
@rm -rf .ipynb_checkpoints
@rm -rf docs/build docs/generated
@find . -type d -name '__pycache__' -exec rm -rf {} +
@find . -type d -name '*pytest_cache*' -exec rm -rf {} +
@find . -type f -name "*.py[co]" -exec rm -rf {} +
format: clean
@black wind_stats tests
@isort wind_stats tests
build:
@python -m build
install:
@python -m pip install -e .[test]
publish:
@poetry publish
docs:
@rm -rf docs/build docs/generated
@sphinx-build docs docs/build
test:
@pytest --cov=wind_stats --cov-report=term-missing --cov-report=xml tests
lint:
@mypy wind_stats
@ruff check wind_stats tests
@black wind_stats tests --check
@isort wind_stats tests --check-only