-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
45 lines (32 loc) · 982 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
39
40
41
42
43
44
45
VENV_BIN = python3 -m venv
VENV_DIR ?= .venv
VENV_ACTIVATE = $(VENV_DIR)/bin/activate
VENV_RUN = . $(VENV_ACTIVATE)
venv: $(VENV_ACTIVATE)
$(VENV_ACTIVATE): setup.cfg pyproject.toml
test -d .venv || $(VENV_BIN) .venv
$(VENV_RUN); pip install --upgrade pip setuptools wheel build
$(VENV_RUN); pip install -e .[test]
touch $(VENV_DIR)/bin/activate
clean:
rm -rf build/
rm -rf .eggs/
rm -rf *.egg-info/
format:
$(VENV_RUN); python -m isort .; python -m black .
test: test-unit
test-unit: venv
$(VENV_RUN); python -m pytest tests/unit
test-integration: venv
$(VENV_RUN); python -m pytest tests/integration
test-coverage: venv
$(VENV_RUN); coverage run --source=notion_objects -m pytest tests && coverage lcov -o .coverage.lcov
coveralls: venv
$(VENV_RUN); coveralls
dist: venv
$(VENV_RUN); python -m build
deploy: clean-dist venv test dist
$(VENV_RUN); pip install --upgrade twine; twine upload dist/*
clean-dist: clean
rm -rf dist/
.PHONY: clean clean-dist